diff options
| author | Sergey Kandaurov <pluknet@nginx.com> | 2021-04-13 11:49:52 +0300 |
|---|---|---|
| committer | Sergey Kandaurov <pluknet@nginx.com> | 2021-04-13 11:49:52 +0300 |
| commit | 792117312d4fafba5af68b5c2fff51c58dcd3bc0 (patch) | |
| tree | b94503c966917e5f9c543e669cb7e40f067c4dd5 /src/event/quic/ngx_event_quic_connection.h | |
| parent | 2fd1aac46d654905242ee2a0d0b5dc6997fd8569 (diff) | |
| download | nginx-792117312d4fafba5af68b5c2fff51c58dcd3bc0.tar.gz nginx-792117312d4fafba5af68b5c2fff51c58dcd3bc0.tar.bz2 | |
QUIC: ngx_quic_frames_stream_t made opaque.
Diffstat (limited to 'src/event/quic/ngx_event_quic_connection.h')
| -rw-r--r-- | src/event/quic/ngx_event_quic_connection.h | 8 |
1 files changed, 8 insertions, 0 deletions
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 * |
