diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-28 06:26:48 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-28 06:26:48 +0000 |
commit | c44936efe71d00276d27e47b0a138e2fc43ee690 (patch) | |
tree | e331c89c65524a42856bc59a33f100c0926f2cab /net/quic/quic_stream_factory.cc | |
parent | ba1e53f90e5df316d75fb9d6f3b11b352e3b3b6e (diff) | |
download | chromium_src-c44936efe71d00276d27e47b0a138e2fc43ee690.zip chromium_src-c44936efe71d00276d27e47b0a138e2fc43ee690.tar.gz chromium_src-c44936efe71d00276d27e47b0a138e2fc43ee690.tar.bz2 |
Use the default QUIC initial CWND.
Review URL: https://codereview.chromium.org/91623003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237707 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/quic/quic_stream_factory.cc')
-rw-r--r-- | net/quic/quic_stream_factory.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/quic/quic_stream_factory.cc b/net/quic/quic_stream_factory.cc index 40f2948..dbb6de2 100644 --- a/net/quic/quic_stream_factory.cc +++ b/net/quic/quic_stream_factory.cc @@ -261,6 +261,9 @@ QuicStreamFactory::QuicStreamFactory( config_.set_idle_connection_state_lifetime( QuicTime::Delta::FromSeconds(30), QuicTime::Delta::FromSeconds(30)); + config_.set_server_initial_congestion_window(kDefaultInitialWindow, + kDefaultInitialWindow); + cannoncial_suffixes_.push_back(string(".c.youtube.com")); cannoncial_suffixes_.push_back(string(".googlevideo.com")); } |