Index: net/quic/core/quic_flags_list.h |
diff --git a/net/quic/core/quic_flags_list.h b/net/quic/core/quic_flags_list.h |
index f68a3d958f681108972f224967eb93f19fce035f..4cd94df8233e25f49ec7ab2c252b706df9ab352c 100644 |
--- a/net/quic/core/quic_flags_list.h |
+++ b/net/quic/core/quic_flags_list.h |
@@ -43,10 +43,6 @@ QUIC_FLAG(bool, FLAGS_quic_require_handshake_confirmation, false) |
// If true, disable pacing in QUIC. |
QUIC_FLAG(bool, FLAGS_quic_disable_pacing_for_perf_tests, false) |
-// If true, QUIC connections can do bandwidth resumption with an initial window |
-// of < 10 packets. |
-QUIC_FLAG(bool, FLAGS_quic_no_lower_bw_resumption_limit, true) |
- |
// If true, QUIC public reset packets will have the \"pre-v33\" public header |
// flags. |
QUIC_FLAG(bool, FLAGS_quic_use_old_public_reset_packets, true) |
@@ -75,13 +71,6 @@ QUIC_FLAG(bool, FLAGS_quic_require_handshake_confirmation_pre33, false) |
// If true, defer creation of new connection till its CHLO arrives. |
QUIC_FLAG(bool, FLAGS_quic_buffer_packet_till_chlo, true) |
-// If true, disables QUIC version less than 32. |
-QUIC_FLAG(bool, FLAGS_quic_disable_pre_32, true) |
- |
-// If true, QUIC will enforce the MTU limit for connections that may require a |
-// small MTU. |
-QUIC_FLAG(bool, FLAGS_quic_enforce_mtu_limit, false) |
- |
// Disable MTU probing if MTU probe causes ERR_MSG_TOO_BIG instead of aborting |
// the connection. |
QUIC_FLAG(bool, FLAGS_graceful_emsgsize_on_mtu_probe, true) |
@@ -110,11 +99,11 @@ QUIC_FLAG(bool, FLAGS_quic_packet_numbers_largest_received, true) |
QUIC_FLAG(bool, FLAGS_quic_only_5rto_client_side, true) |
// If true, QUIC server push will enabled by default. |
-QUIC_FLAG(bool, FLAGS_quic_enable_server_push_by_default, false) |
+QUIC_FLAG(bool, FLAGS_quic_enable_server_push_by_default, true) |
// Only inform the QuicSentPacketManager of packets that were sent, |
// not those that we tried to send. |
-QUIC_FLAG(bool, FLAGS_quic_only_track_sent_packets, false) |
+QUIC_FLAG(bool, FLAGS_quic_only_track_sent_packets, true) |
// If true, connection is closed when packet generator is trying to |
// add a frame which alone cannot fit into a packet. |
@@ -154,3 +143,14 @@ QUIC_FLAG(bool, FLAGS_quic_buffer_packets_after_chlo, false) |
// processed, but now that flow control is implemented, it can be received once |
// decrypted. |
QUIC_FLAG(bool, FLAGS_quic_receive_packet_once_decrypted, false) |
+ |
+// If true, enable the Lazy FACK style loss detection in QUIC. |
+QUIC_FLAG(bool, FLAGS_quic_enable_lazy_fack, true) |
+ |
+// If true, do not override a connection in global map if exists. Only create |
+// QUIC session if it is successfully inserted to the global map. Toss the |
+// packet if insertion fails. |
+QUIC_FLAG(bool, FLAGS_quic_create_session_after_insertion, false) |
+ |
+// If true, rejected packet number is removed from public reset packet. |
+QUIC_FLAG(bool, FLAGS_quic_remove_packet_number_from_public_reset, false) |