diff options
author | Mark D. Roth <roth@google.com> | 2017-06-09 07:27:16 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2017-06-09 07:27:16 -0700 |
commit | 837375048400372ffb97c06a5da16ec515cdd118 (patch) | |
tree | 078d2171b0ac88bd55e6de4a9a60a2edb5fb1881 /src | |
parent | 74923accac565cd7a4bd07b6ff054e8464f65fc1 (diff) |
Change default for SETTINGS_MAX_HEADER_LIST_SIZE from 16KiB to 8KiB.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/chttp2_transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.c b/src/core/ext/transport/chttp2/transport/chttp2_transport.c index bdebc8eeec..ca82d4d818 100644 --- a/src/core/ext/transport/chttp2/transport/chttp2_transport.c +++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.c @@ -52,7 +52,7 @@ #define DEFAULT_CONNECTION_WINDOW_TARGET (1024 * 1024) #define MAX_WINDOW 0x7fffffffu #define MAX_WRITE_BUFFER_SIZE (64 * 1024 * 1024) -#define DEFAULT_MAX_HEADER_LIST_SIZE (16 * 1024) +#define DEFAULT_MAX_HEADER_LIST_SIZE (8 * 1024) #define DEFAULT_CLIENT_KEEPALIVE_TIME_MS INT_MAX #define DEFAULT_CLIENT_KEEPALIVE_TIMEOUT_MS 20000 /* 20 seconds */ |