comparison src/event/quic/ngx_event_quic_connection.h @ 8754:915c2f7092ed quic

QUIC: ngx_quic_frames_stream_t made opaque.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 13 Apr 2021 11:49:52 +0300
parents 46161c610919
children b4e6b7049984
comparison
equal deleted inserted replaced
8753:46161c610919 8754:915c2f7092ed
96 size_t ssthresh; 96 size_t ssthresh;
97 ngx_msec_t recovery_start; 97 ngx_msec_t recovery_start;
98 } ngx_quic_congestion_t; 98 } ngx_quic_congestion_t;
99 99
100 100
101 struct ngx_quic_frames_stream_s {
102 uint64_t sent;
103 uint64_t received;
104 ngx_queue_t frames; /* reorder queue */
105 size_t total; /* size of buffered data */
106 };
107
108
101 /* 109 /*
102 * 12.3. Packet Numbers 110 * 12.3. Packet Numbers
103 * 111 *
104 * Conceptually, a packet number space is the context in which a packet 112 * Conceptually, a packet number space is the context in which a packet
105 * can be processed and acknowledged. Initial packets can only be sent 113 * can be processed and acknowledged. Initial packets can only be sent