Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / net / quic / quic_flags.cc
index e0ca6e6..8d6dd86 100644 (file)
@@ -29,16 +29,32 @@ bool FLAGS_send_quic_crypto_reject_reason = false;
 // must also request FEC protection for the server to use FEC.
 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_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;
+
+// If true, then QUIC connections will set both idle and overall timeouts in a
+// single method.
+bool FLAGS_quic_unified_timeouts = true;
+
+// If true, QUIC will be more resilliant to junk packets with valid connection
+// IDs.
+bool FLAGS_quic_drop_junk_packets = true;
+
+// If true, QUIC BBR congestion control may be enabled via Finch and/or via QUIC
+// connection options.
+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;