]> git.kaiwu.me - nginx.git/commit
QUIC: refactored CRYPTO and STREAM buffer ordering.
authorRoman Arutyunyan <arut@nginx.com>
Tue, 25 May 2021 10:55:12 +0000 (13:55 +0300)
committerRoman Arutyunyan <arut@nginx.com>
Tue, 25 May 2021 10:55:12 +0000 (13:55 +0300)
commitcd86cf34db80c517c8e26bb81bc393065eb96eda
tree3848c44838684577a48921c6611241ea3334d562
parentf1378601010b8f2857ac7c043ec4ac6d534543bb
QUIC: refactored CRYPTO and STREAM buffer ordering.

Generic function ngx_quic_order_bufs() is introduced.  This function creates
and maintains a chain of buffers with holes.  Holes are marked with b->sync
flag.  Several buffers and holes in this chain may share the same underlying
memory buffer.

When processing STREAM frames with this function, frame data is copied only
once to the right place in the stream input chain.  Previously data could
be copied twice.  First when buffering an out-of-order frame data, and then
when filling stream buffer from ordered frame queue.  Now there's only one
data chain for both tasks.
src/event/quic/ngx_event_quic.c
src/event/quic/ngx_event_quic.h
src/event/quic/ngx_event_quic_connection.h
src/event/quic/ngx_event_quic_frames.c
src/event/quic/ngx_event_quic_frames.h
src/event/quic/ngx_event_quic_ssl.c
src/event/quic/ngx_event_quic_ssl.h
src/event/quic/ngx_event_quic_streams.c
src/event/quic/ngx_event_quic_streams.h