diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-11-12 11:39:41 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-11-16 00:12:53 +0100 |
commit | 7627a2dd9d4b7417672fdec3dc6e7f8d3de379de (patch) | |
tree | 62c87a9fd4693e3737c02486730fd433c24c29dd /lib/http.h | |
parent | c6b70de24660673648a37be4d18638274d7f5741 (diff) | |
download | curl-7627a2dd9d4b7417672fdec3dc6e7f8d3de379de.tar.gz |
ngtcp2: increase QUIC window size when data is consumed
Assisted-by: Javier Blazquez
Ref #4525 (partial fix)
Closes #4600
Diffstat (limited to 'lib/http.h')
-rw-r--r-- | lib/http.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/http.h b/lib/http.h index a3a275702..87e979ee2 100644 --- a/lib/http.h +++ b/lib/http.h @@ -198,6 +198,7 @@ struct HTTP { bool upload_done; #endif #ifdef USE_NGHTTP3 + size_t unacked_window; struct h3out *h3out; /* per-stream buffers for upload */ #endif }; |