From: Tatsuhiro Tsujikawa Date: Sun, 10 Apr 2022 21:08:30 +0000 (+0200) Subject: ngtcp2: enlarge H3_SEND_SIZE X-Git-Tag: curl-7_83_0~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f15beb6f30c5d7ce294dbebde971aaa5476c0962;p=thirdparty%2Fcurl.git ngtcp2: enlarge H3_SEND_SIZE Make h3_SEND_SIZE larger because current value (20KiB) is too small for the high latency environment. Closes #8690 --- diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c index 9dd4fa2147..a58cf7f079 100644 --- a/lib/vquic/ngtcp2.c +++ b/lib/vquic/ngtcp2.c @@ -73,7 +73,7 @@ * the far end, then start over at index 0 again. */ -#define H3_SEND_SIZE (20*1024) +#define H3_SEND_SIZE (256*1024) struct h3out { uint8_t buf[H3_SEND_SIZE]; size_t used; /* number of bytes used in the buffer */