aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-05-11 23:18:21 +0200
committerDaniel Stenberg <daniel@haxx.se>2015-05-18 09:33:47 +0200
commit8b38fcf2f610e5e5a7f9ffdb60611a8970a01d6d (patch)
tree189ba4c59570a42ce7e0eba9ef3e5d3579e84268 /lib
parent5871affc7a94936f11918b007cd2f09f5d26d7bf (diff)
http2: bump the h2 buffer size to 32K for speed
Diffstat (limited to 'lib')
-rw-r--r--lib/http2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http2.c b/lib/http2.c
index cfb7a0d0a..c6e90e1dd 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)
{