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

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

Issue 1871953003: relnote: deprecate --quic_log_received_parameters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@05_CL_119182848
Patch Set: Created 4 years, 8 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/quic/quic_flags.cc ('k') | no next file » | 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 779a786ed2627b934152bd76a93c75869b443d7b..2f2c4d1a7b74e58ca0fd3341386eadb3fbcd3a03 100644
--- a/net/tools/quic/quic_server_session_base.cc
+++ b/net/tools/quic/quic_server_session_base.cc
@@ -64,9 +64,9 @@ void QuicServerSessionBase::OnConfigNegotiated() {
crypto_stream_->PreviousCachedNetworkParams();
if (cached_network_params != nullptr &&
cached_network_params->serving_region() == serving_region_) {
- if (FLAGS_quic_log_received_parameters) {
- connection()->OnReceiveConnectionState(*cached_network_params);
- }
+ // Log the received connection parameters, regardless of how they
+ // get used for bandwidth resumption.
+ connection()->OnReceiveConnectionState(*cached_network_params);
if (bandwidth_resumption_enabled_) {
// Only do bandwidth resumption if estimate is recent enough.
« no previous file with comments | « net/quic/quic_flags.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698