From f15beb6f30c5d7ce294dbebde971aaa5476c0962 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 10 Apr 2022 23:08:30 +0200 Subject: [PATCH] ngtcp2: enlarge H3_SEND_SIZE Make h3_SEND_SIZE larger because current value (20KiB) is too small for the high latency environment. Closes #8690 --- lib/vquic/ngtcp2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.47.3