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

Unified Diff: net/quic/core/quic_flags_list.h

Issue 2322233004: Landing Recent QUIC changes until Sun Sep 4 03:41:00 (Closed)
Patch Set: Created 4 years, 3 months 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/core/quic_flags_list.h
diff --git a/net/quic/core/quic_flags_list.h b/net/quic/core/quic_flags_list.h
index a70902be98ce264a852de44538b78c88b29861fa..93bea9e1c34114fa7626b5ade0b460d3b8976062 100644
--- a/net/quic/core/quic_flags_list.h
+++ b/net/quic/core/quic_flags_list.h
@@ -7,10 +7,6 @@
// This file contains the list of QUIC protocol flags.
-// If true, it will return as soon as an error is detected while validating
-// CHLO.
-QUIC_FLAG(bool, FLAGS_use_early_return_when_verifying_chlo, true)
-
// If true, QUIC BBR congestion control may be enabled via Finch and/or via QUIC
// connection options.
QUIC_FLAG(bool, FLAGS_quic_allow_bbr, false)
@@ -56,21 +52,10 @@ QUIC_FLAG(bool, FLAGS_quic_measure_headers_hol_blocking_time, true)
// If true, disable pacing in QUIC.
QUIC_FLAG(bool, FLAGS_quic_disable_pacing_for_perf_tests, false)
-// If true, Close the connection instead of writing unencrypted stream data.
-QUIC_FLAG(bool, FLAGS_quic_never_write_unencrypted_data, true)
-
// 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)
-// Use largest acked in the most recent ack instead of largest acked ever in
-// loss recovery.
-QUIC_FLAG(bool, FLAGS_quic_loss_recovery_use_largest_acked, true)
-
-// Only set one alarm for sending at once, either the send alarm or
-// retransmission alarm. Disabled because it breaks QUIC time loss detection.
-QUIC_FLAG(bool, FLAGS_quic_only_one_sending_alarm, false)
-
// 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)
@@ -143,7 +128,7 @@ QUIC_FLAG(bool, FLAGS_quic_enable_app_limited_check, true)
QUIC_FLAG(bool, FLAGS_quic_simple_packet_number_length_2, true)
// If true, disables QUIC version less than 32.
-QUIC_FLAG(bool, FLAGS_quic_disable_pre_32, false)
+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.
@@ -172,4 +157,7 @@ QUIC_FLAG(bool, FLAGS_quic_send_scfg_ttl, true)
// If true, only open limited number of quic sessions per epoll event. Leave the
// rest to next event. This flag can be turned on only if
// --quic_buffer_packet_till_chlo is true.
-QUIC_FLAG(bool, FLAGS_quic_limit_num_new_sessions_per_epoll_loop, true)
+QUIC_FLAG(bool, FLAGS_quic_limit_num_new_sessions_per_epoll_loop, false)
+
+// If true, disables QUIC version less than 34.
+QUIC_FLAG(bool, FLAGS_quic_disable_pre_34, false)

Powered by Google App Engine
This is Rietveld 408576698