Commit e7b19320 authored by birenroy's avatar birenroy Committed by Commit bot

This change adds a kMaxStreamId constant.

This CL lands server change 141401937 by yasong.

BUG=488484

Review-Url: https://codereview.chromium.org/2566193002
Cr-Commit-Position: refs/heads/master@{#437912}
parent 7d788939
......@@ -38,6 +38,9 @@ typedef uint32_t SpdyStreamId;
// flow control).
const SpdyStreamId kSessionFlowControlStreamId = 0;
// Max stream id.
const SpdyStreamId kMaxStreamId = 0x7fffffff;
// The maximum possible frame payload size allowed by the spec.
const uint32_t kSpdyMaxFrameSizeLimit = (1 << 24) - 1;
......
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