Commit 956f91b7 authored by bnc's avatar bnc Committed by Commit bot

Add kSpdyInitialHeaderListSizeLimit constant.

This CL lands server change 115068348 by diannahu.

BUG=488484

Review-Url: https://codereview.chromium.org/1911413002
Cr-Commit-Position: refs/heads/master@{#390361}
parent 039cd143
......@@ -55,6 +55,10 @@ const uint32_t kSpdyMaxFrameSizeLimit = (1 << 24) - 1;
// the maximum control frame size we accept.
const uint32_t kSpdyInitialFrameSizeLimit = 1 << 14;
// The initial value for the maximum size of the header list, "unlimited" (max
// unsigned 32-bit int) as per the spec.
const uint32_t kSpdyInitialHeaderListSizeLimit = 0xFFFFFFFF;
// Maximum window size for a Spdy stream or session.
const int32_t kSpdyMaximumWindowSize = 0x7FFFFFFF; // Max signed 32bit int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment