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

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

Issue 1651153005: changes QUIC negotiation about max open streams which effects server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@113042237
Patch Set: Created 4 years, 11 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_client_session.cc ('k') | net/tools/quic/quic_server_session_base_test.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_base.cc
diff --git a/net/tools/quic/quic_server_session_base.cc b/net/tools/quic/quic_server_session_base.cc
index 42ee3574dc31b936ade1d1fdcb5c60873b9abb31..0801921b44493ad32d6d37aa9eb71d2dec475ca5 100644
--- a/net/tools/quic/quic_server_session_base.cc
+++ b/net/tools/quic/quic_server_session_base.cc
@@ -200,7 +200,7 @@ bool QuicServerSessionBase::ShouldCreateOutgoingDynamicStream() {
QUIC_BUG << "Encryption not established so no outgoing stream created.";
return false;
}
- if (GetNumOpenOutgoingStreams() >= get_max_open_streams()) {
+ if (GetNumOpenOutgoingStreams() >= max_open_outgoing_streams()) {
VLOG(1) << "No more streams should be created. "
<< "Already " << GetNumOpenOutgoingStreams() << " open.";
return false;
« no previous file with comments | « net/tools/quic/quic_client_session.cc ('k') | net/tools/quic/quic_server_session_base_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698