]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
http2: bump the h2 buffer size to 32K for speed
authorDaniel Stenberg <daniel@haxx.se>
Mon, 11 May 2015 21:18:21 +0000 (23:18 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 18 May 2015 07:33:47 +0000 (09:33 +0200)
lib/http2.c

index cfb7a0d0ab0975bcb88b9d3f1e08f56b31039851..c6e90e1ddb5d66bc5541bc73aaadb7495210b0af 100644 (file)
@@ -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)
 {