Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Unified Diff: net/tools/quic/quic_server_session.cc

Issue 15074007: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for windows Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/quic/quic_server.cc ('k') | net/tools/quic/quic_socket_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_server_session.cc
diff --git a/net/tools/quic/quic_server_session.cc b/net/tools/quic/quic_server_session.cc
index f6923325437f78cc04e2540db8a1d58e13dc758a..330c30717fd07b76dedb0ed18b9c6062cd7cfad9 100644
--- a/net/tools/quic/quic_server_session.cc
+++ b/net/tools/quic/quic_server_session.cc
@@ -16,9 +16,10 @@ QuicServerSession::QuicServerSession(
const QuicCryptoServerConfig& crypto_config,
QuicConnection* connection,
QuicSessionOwner* owner)
- : QuicSession(connection, true),
- crypto_stream_(config, crypto_config, this),
+ : QuicSession(connection, config, true),
+ crypto_stream_(crypto_config, this),
owner_(owner) {
+ set_max_open_streams(config.max_streams_per_connection());
}
QuicServerSession::~QuicServerSession() {
« no previous file with comments | « net/tools/quic/quic_server.cc ('k') | net/tools/quic/quic_socket_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698