summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authormbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 20:57:52 +0000
committermbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 20:57:52 +0000
commit1e7b72d0b63349e8d3876cf46226ec3ce5feb5fa (patch)
tree3d5f92a4bb462f69e1ccd0aaa6d88c8e909d9f2f /net
parent2bf5f415ac56938fa2b99417b21ce0c75476d3f4 (diff)
downloadchromium_src-1e7b72d0b63349e8d3876cf46226ec3ce5feb5fa.zip
chromium_src-1e7b72d0b63349e8d3876cf46226ec3ce5feb5fa.tar.gz
chromium_src-1e7b72d0b63349e8d3876cf46226ec3ce5feb5fa.tar.bz2
Increase the initial spdy concurrent stream limit to 10
BUG=none TEST=none Review URL: http://codereview.chromium.org/5712009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69176 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/spdy/spdy_session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h
index 49f3cf5..6268a4f 100644
--- a/net/spdy/spdy_session.h
+++ b/net/spdy/spdy_session.h
@@ -207,7 +207,7 @@ class SpdySession : public base::RefCounted<SpdySession>,
CLOSED
};
- enum { kDefaultMaxConcurrentStreams = 6 }; // TODO(mbelshe) remove this
+ enum { kDefaultMaxConcurrentStreams = 10 };
struct PendingCreateStream {
const GURL* url;