diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-08 20:24:43 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-08 20:24:43 +0000 |
commit | ddc998928563ca10888799e8bbed25f885e01c4b (patch) | |
tree | 4b14f3342e61910d4fd79b3c8c75a5a768007a5c /net/spdy | |
parent | 47d5cd711e0097ccab55bd3a604058fc26f37ea1 (diff) | |
download | chromium_src-ddc998928563ca10888799e8bbed25f885e01c4b.zip chromium_src-ddc998928563ca10888799e8bbed25f885e01c4b.tar.gz chromium_src-ddc998928563ca10888799e8bbed25f885e01c4b.tar.bz2 |
Minor SPDY4 FlowControl fixes.
This lands server change 52442340.
R=rtenneti@chromium.org
Review URL: https://codereview.chromium.org/26413002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@227575 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy')
-rw-r--r-- | net/spdy/spdy_protocol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/spdy/spdy_protocol.h b/net/spdy/spdy_protocol.h index 438d9d7..3c891a5 100644 --- a/net/spdy/spdy_protocol.h +++ b/net/spdy/spdy_protocol.h @@ -45,10 +45,10 @@ typedef uint32 SpdyStreamId; // flow control). const SpdyStreamId kSessionFlowControlStreamId = 0; -// Initial window size for a Spdy stream. +// Initial window size for a Spdy stream in bytes. const int32 kSpdyStreamInitialWindowSize = 64 * 1024; // 64 KBytes -// Initial window size for a Spdy session. +// Initial window size for a Spdy session in bytes. const int32 kSpdySessionInitialWindowSize = 64 * 1024; // 64 KBytes // Maximum window size for a Spdy stream or session. |