diff src/event/ngx_event_quic.h @ 8365:fab75acb1f72 quic

Respect MAX_DATA and MAX_STREAM_DATA from QUIC client.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 28 Apr 2020 16:37:32 +0300
parents eee307399229
children 9d9531431c8c
line wrap: on
line diff
--- a/src/event/ngx_event_quic.h
+++ b/src/event/ngx_event_quic.h
@@ -71,6 +71,7 @@ struct ngx_quic_stream_s {
     ngx_connection_t          *c;
     uint64_t                   id;
     uint64_t                   acked;
+    uint64_t                   send_max_data;
     ngx_buf_t                 *b;
     ngx_quic_frames_stream_t   fs;
 };