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 ba7f31cb24846d12d79086508913f243a35b23bf..0b45b31ae4dbf5e1f806ca577b09795f9117854b 100644 |
--- a/net/quic/core/quic_flags_list.h |
+++ b/net/quic/core/quic_flags_list.h |
@@ -84,16 +84,9 @@ QUIC_FLAG(bool, FLAGS_quic_limit_num_new_sessions_per_epoll_loop, true) |
// QuicStreamSequencerBuffer to buffer incoming data. |
QUIC_FLAG(bool, FLAGS_quic_reduce_sequencer_buffer_memory_life_time, true) |
-// If true, allow server address change if it is because of mapped ipv4 address. |
-QUIC_FLAG(bool, FLAGS_quic_allow_server_address_change_for_mapped_ipv4, true) |
- |
// If true, disables QUIC version less than 34. |
QUIC_FLAG(bool, FLAGS_quic_disable_pre_34, false) |
-// When true, decode the packet number from the largest received packet, rather |
-// than the most recent. |
-QUIC_FLAG(bool, FLAGS_quic_packet_numbers_largest_received, true) |
- |
// Only close the connection on the 5th RTO client side when the 5RTO option |
// is enabled. |
QUIC_FLAG(bool, FLAGS_quic_only_5rto_client_side, true) |
@@ -105,10 +98,6 @@ QUIC_FLAG(bool, FLAGS_quic_enable_server_push_by_default, true) |
// not those that we tried to send. |
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. |
-QUIC_FLAG(bool, FLAGS_quic_close_connection_on_huge_frames, true) |
- |
// As the Linux kernel does, limit QUIC's Cubic congestion control to |
// only increase the CWND 1 packet for every two packets acked. |
QUIC_FLAG(bool, FLAGS_quic_limit_cubic_cwnd_increase, true) |
@@ -124,9 +113,6 @@ QUIC_FLAG(bool, FLAGS_quic_allow_large_send_deltas, true) |
// or equal to the largest retransmittable packet. |
QUIC_FLAG(bool, FLAGS_quic_largest_sent_retransmittable, true) |
-// If true, close connection when sequencer buffer enter into unexpected state. |
-QUIC_FLAG(bool, FLAGS_quic_stream_sequencer_buffer_debug, true) |
- |
// If true, release QuicCryptoStream\'s read buffer when stream are less |
// frequently used. |
QUIC_FLAG(bool, FLAGS_quic_release_crypto_stream_buffer, false) |
@@ -166,3 +152,6 @@ QUIC_FLAG(bool, FLAGS_quic_bugfix_fhol_writev_fin_only_v2, true) |
// If true, v33 QUIC client uses 1 bit to specify 8-byte connection id in |
// public flag. |
QUIC_FLAG(bool, FLAGS_quic_remove_v33_hacks2, false) |
+ |
+// If true, limits QUIC uncompressed headers to 16K. |
+QUIC_FLAG(bool, FLAGS_quic_limit_uncompressed_headers, false) |