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

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

Issue 2334363002: Landing Recent QUIC changes until Sat Sep 10 00:32:41 (Closed)
Patch Set: Revase 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
« no previous file with comments | « net/quic/core/quic_crypto_server_stream.cc ('k') | net/quic/core/quic_framer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 eef10eb56d484b45576f06fa965a41210169e25c..bfad1e933e024611f4db6b6300b6b4c111b76030 100644
--- a/net/quic/core/quic_flags_list.h
+++ b/net/quic/core/quic_flags_list.h
@@ -40,12 +40,6 @@ QUIC_FLAG(bool, FLAGS_quic_enable_multipath, false)
// TODO(rtenneti): Enable this flag after CryptoServerTest's are fixed.
QUIC_FLAG(bool, FLAGS_quic_require_handshake_confirmation, false)
-// If true, QUIC will measure head of line (HOL) blocking due between
-// streams due to packet losses on the headers stream. The
-// measurements will be surfaced via UMA histogram
-// Net.QuicSession.HeadersHOLBlockedTime.
-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)
@@ -69,42 +63,19 @@ QUIC_FLAG(bool, FLAGS_quic_respect_http2_settings_frame, true)
QUIC_FLAG(bool, FLAGS_quic_enable_version_35, true)
// If true, re-enables QUIC_VERSION_36.
-QUIC_FLAG(bool, FLAGS_quic_enable_version_36, true)
-
-// If true, enables QUIC_VERSION_36.
QUIC_FLAG(bool, FLAGS_quic_enable_version_36_v2, true)
// If true, use async codepaths to invoke ProofSource::GetProof.
QUIC_FLAG(bool, FLAGS_enable_async_get_proof, false)
-// If true, QuicAlarm::Update will call a faster UpdateImpl implementation
-// instead of canceling and reregistering the alarm.
-QUIC_FLAG(bool, FLAGS_quic_change_alarms_efficiently, true)
-
// If true, requires handshake confirmations for all QUIC handshakes with
// versions less than 33.
QUIC_FLAG(bool, FLAGS_quic_require_handshake_confirmation_pre33, false)
-// If true, fix a bug with which QuicStreamSequencerBuffer can\'t release block
-// memory in time.
-QUIC_FLAG(bool, FLAGS_quic_sequencer_buffer_retire_block_in_time, true)
-
-// Remove obsolete code to force QUIC to go forward secure, now that the server
-// immediately goes forward secure.
-QUIC_FLAG(bool, FLAGS_quic_remove_obsolete_forward_secure, true)
-
// If true, close QUIC connection explicitly on write error due to packet being
// too large.
QUIC_FLAG(bool, FLAGS_quic_close_connection_on_packet_too_large, true)
-// If true, close the write side of a QUIC spdy stream when all queued bytes
-// have been written and a FIN has been sent.
-QUIC_FLAG(bool, FLAGS_quic_close_stream_after_writing_queued_data, true)
-
-// If true, close connection with QUIC_TOO_MANY_FRAME_GAPS error when number of
-// gaps in QuicStreamSequenceBuffer exceeds allowed limit.
-QUIC_FLAG(bool, FLAGS_quic_limit_frame_gaps_in_buffer, 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_hacks, true)
@@ -116,10 +87,6 @@ QUIC_FLAG(bool, FLAGS_quic_use_chlo_packet_size, true)
// If true, defer creation of new connection till its CHLO arrives.
QUIC_FLAG(bool, FLAGS_quic_buffer_packet_till_chlo, true)
-// If true, the connection will check whether it is application-limited, and
-// notify the congestion controller about it.
-QUIC_FLAG(bool, FLAGS_quic_enable_app_limited_check, true)
-
// Deprecate QuicPacketCreator::next_packet_number_length_ because it's no
// longer necessary.
QUIC_FLAG(bool, FLAGS_quic_simple_packet_number_length_2, true)
@@ -166,3 +133,6 @@ 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)
« no previous file with comments | « net/quic/core/quic_crypto_server_stream.cc ('k') | net/quic/core/quic_framer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698