aboutsummaryrefslogtreecommitdiff
path: root/lib/http2.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-05-04 10:14:27 +0200
committerDaniel Stenberg <daniel@haxx.se>2015-05-18 08:57:18 +0200
commita28734be097c1e3eebf15379ff3eb7b80e5cf867 (patch)
tree3aceb3836d20599ad9dad117e486dc5342580af8 /lib/http2.c
parent5252f13dfaa6c006f085450813104e285c01ee28 (diff)
http2: bump the h2 buffer to 8K
Diffstat (limited to 'lib/http2.c')
-rw-r--r--lib/http2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http2.c b/lib/http2.c
index ddac7c2f5..49b8e559e 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)
{