diff options
author | rtenneti@google.com <rtenneti@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-14 23:20:24 +0000 |
---|---|---|
committer | rtenneti@google.com <rtenneti@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-14 23:20:24 +0000 |
commit | e8bde6278b2a17624390f7d10f7687b081c968d1 (patch) | |
tree | 8c456f835502e00074585d9f72c653d203e5f468 /net/spdy/spdy_session_pool.h | |
parent | 6e27ac7389dd5d6220900673bb5b7db982877f87 (diff) | |
download | chromium_src-e8bde6278b2a17624390f7d10f7687b081c968d1.zip chromium_src-e8bde6278b2a17624390f7d10f7687b081c968d1.tar.gz chromium_src-e8bde6278b2a17624390f7d10f7687b081c968d1.tar.bz2 |
SPDY - Added SETTINGS_MAX_CONCURRENT_STREAMS:1000 in the initial SETTINGS frame,
so the server can push effectively as many streams as it wants to.
- Send along SETTINGS_MAX_CONCURRENT_STREAMS for SPDY versions 2 and higher.
- Avoid sending the Settings frame for every unit tests.
R=willchan
BUG=132341
TEST=netowrk unit tests
Review URL: https://chromiumcodereview.appspot.com/10536136
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142265 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_session_pool.h')
-rw-r--r-- | net/spdy/spdy_session_pool.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/spdy/spdy_session_pool.h b/net/spdy/spdy_session_pool.h index 75b157c..05154f5 100644 --- a/net/spdy/spdy_session_pool.h +++ b/net/spdy/spdy_session_pool.h @@ -208,6 +208,8 @@ class NET_EXPORT SpdySessionPool // Defaults to true. May be controlled via SpdySessionPoolPeer for tests. bool verify_domain_authentication_; + bool enable_sending_initial_settings_; + // This SPDY proxy is allowed to push resources from origins that are // different from those of their associated streams. HostPortPair trusted_spdy_proxy_; |