Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / net / quic / quic_flags.cc
index affa271..e0ca6e6 100644 (file)
 // other transmissions.
 bool FLAGS_track_retransmission_history = false;
 
-// Do not remove this flag until the Finch-trials described in b/11706275
-// are complete.
-// If true, QUIC connections will support the use of a pacing algorithm when
-// sending packets, in an attempt to reduce packet loss.  The client must also
-// request pacing for the server to enable it.
-bool FLAGS_enable_quic_pacing = true;
-
 bool FLAGS_quic_allow_oversized_packets_for_test = false;
 
 // When true, the use time based loss detection instead of nack.
@@ -37,4 +30,15 @@ bool FLAGS_send_quic_crypto_reject_reason = false;
 bool FLAGS_enable_quic_fec = false;
 
 // If true, a QUIC connection with too many unfinished streams will be closed.
-bool FLAGS_close_quic_connection_unfinished_streams = false;
+bool FLAGS_close_quic_connection_unfinished_streams_2 = false;
+
+// When true, defaults to BBR congestion control instead of Cubic.
+bool FLAGS_quic_use_bbr_congestion_control = false;
+
+// If true, only times out QUIC connections when there has been network
+// activity; packets sent or received.
+bool FLAGS_quic_timeouts_require_activity = false;
+
+// If true, the server will accept slightly more streams than the negotiated
+// limit.
+bool FLAGS_quic_allow_more_open_streams = false;