comparison src/event/quic/ngx_event_quic.h @ 8779:f52a2b77d406 quic

QUIC: generic buffering for stream input. Previously each stream had an input buffer. Now memory is allocated as bytes arrive. Generic buffering mechanism is used for this.
author Roman Arutyunyan <arut@nginx.com>
date Wed, 05 May 2021 17:15:20 +0300
parents baf9551b4a5b
children b3f6ad181df4
comparison
equal deleted inserted replaced
8778:5186ee5a94b9 8779:f52a2b77d406
77 ngx_connection_t *parent; 77 ngx_connection_t *parent;
78 ngx_connection_t *connection; 78 ngx_connection_t *connection;
79 uint64_t id; 79 uint64_t id;
80 uint64_t acked; 80 uint64_t acked;
81 uint64_t send_max_data; 81 uint64_t send_max_data;
82 ngx_buf_t *b; 82 uint64_t recv_max_data;
83 ngx_chain_t *in;
83 ngx_quic_frames_stream_t *fs; 84 ngx_quic_frames_stream_t *fs;
84 ngx_uint_t cancelable; /* unsigned cancelable:1; */ 85 ngx_uint_t cancelable; /* unsigned cancelable:1; */
85 }; 86 };
86 87
87 88