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

Unified Diff: net/quic/quic_flags.cc

Issue 1812633002: No longer limit QUIC's max CWND to 200 packets. Protected by quic_dont_limit_max_cwnd. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@116768420
Patch Set: Created 4 years, 9 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.h ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_flags.cc
diff --git a/net/quic/quic_flags.cc b/net/quic/quic_flags.cc
index 01da76b3cb245489ed611027259a463882d31d80..ec7c037ee852f73b8e38bced6fc8a558ed7f11cd 100644
--- a/net/quic/quic_flags.cc
+++ b/net/quic/quic_flags.cc
@@ -133,8 +133,11 @@ bool FLAGS_spdy_on_stream_end = true;
// If true, QuicCryptoServerConfig will use cached compressed certificates
// if the uncompressed certs to be compressed hits the cache.
-bool FLAGS_quic_use_cached_compressed_certs = false;
+bool FLAGS_quic_use_cached_compressed_certs = true;
// Enable a connection option allowing connections to time out if more than 5
// consecutive RTOs are sent.
-bool FLAGS_quic_enable_rto_timeout = false;
+bool FLAGS_quic_enable_rto_timeout = true;
Ryan Hamilton 2016/03/16 20:29:21 Ah, now they're true :>
+
+// Do not limit the max CWND to 200 packets in QUIC.
+bool FLAGS_quic_dont_limit_max_cwnd = true;
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698