From 792117312d4fafba5af68b5c2fff51c58dcd3bc0 Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Tue, 13 Apr 2021 11:49:52 +0300 Subject: QUIC: ngx_quic_frames_stream_t made opaque. --- src/event/quic/ngx_event_quic_connection.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/event/quic/ngx_event_quic_connection.h') diff --git a/src/event/quic/ngx_event_quic_connection.h b/src/event/quic/ngx_event_quic_connection.h index eb8507050..992397a66 100644 --- a/src/event/quic/ngx_event_quic_connection.h +++ b/src/event/quic/ngx_event_quic_connection.h @@ -98,6 +98,14 @@ typedef struct { } ngx_quic_congestion_t; +struct ngx_quic_frames_stream_s { + uint64_t sent; + uint64_t received; + ngx_queue_t frames; /* reorder queue */ + size_t total; /* size of buffered data */ +}; + + /* * 12.3. Packet Numbers * -- cgit