From: Daniel Stenberg Date: Mon, 11 May 2015 21:18:21 +0000 (+0200) Subject: http2: bump the h2 buffer size to 32K for speed X-Git-Tag: curl-7_43_0~126 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8b38fcf2f610e5e5a7f9ffdb60611a8970a01d6d;p=thirdparty%2Fcurl.git http2: bump the h2 buffer size to 32K for speed --- diff --git a/lib/http2.c b/lib/http2.c index cfb7a0d0ab..c6e90e1ddb 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -659,7 +659,7 @@ static nghttp2_settings_entry settings[] = { { NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE, NGHTTP2_INITIAL_WINDOW_SIZE }, }; -#define H2_BUFSIZE 8192 +#define H2_BUFSIZE 32768 static void freestreamentry(void *freethis) {