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

Unified Diff: net/quic/quic_flags.cc

Issue 822713002: Update from https://crrev.com/309415 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years 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
Index: net/quic/quic_flags.cc
diff --git a/net/quic/quic_flags.cc b/net/quic/quic_flags.cc
index d06234a41eb9060cd537469a211fc85f7272bc9e..b395eacdc14ca2455f62e7669ca778e521ded375 100644
--- a/net/quic/quic_flags.cc
+++ b/net/quic/quic_flags.cc
@@ -39,14 +39,6 @@ bool FLAGS_quic_allow_bbr = false;
// If true, truncate QUIC connection IDs if the client requests it.
bool FLAGS_allow_truncated_connection_ids_for_quic = false;
-// If true, close the connection when there are too many outstanding QUIC
-// packets in the sent or received packet managers.
-bool FLAGS_quic_too_many_outstanding_packets = false;
-
-// If true, QUIC connections will delay moving to forward security until the
-// client starts sending foward secure encrypted packets.
-bool FLAGS_enable_quic_delay_forward_security = true;
-
// Do not flip this flag. jokulik plans more testing and additional monitoring
// before the flag can go the auto-flip process.
//
@@ -68,3 +60,11 @@ bool FLAGS_quic_allow_silent_close = true;
// If true, use std::cbrt instead of custom cube root.
bool FLAGS_quic_use_std_cbrt = true;
+
+// If true, the QUIC packet generator will not attempt to queue multiple ACK
+// frames.
+bool FLAGS_quic_disallow_multiple_pending_ack_frames = true;
+
+// If true, then the source address tokens generated for QUIC connects will
+// store multiple addresses.
+bool FLAGS_quic_use_multiple_address_in_source_tokens = false;

Powered by Google App Engine
This is Rietveld 408576698