From a28734be097c1e3eebf15379ff3eb7b80e5cf867 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 4 May 2015 10:14:27 +0200 Subject: [PATCH] http2: bump the h2 buffer to 8K --- lib/http2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http2.c b/lib/http2.c index ddac7c2f5380a5..49b8e559eff14c 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -622,7 +622,7 @@ static nghttp2_settings_entry settings[] = { { NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE, NGHTTP2_INITIAL_WINDOW_SIZE }, }; -#define H2_BUFSIZE 1024 +#define H2_BUFSIZE 8192 static void freestreamentry(void *freethis) {