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

Unified Diff: net/quic/quic_flags.cc

Issue 2158263003: Landing Recent QUIC changes until 7/18/2016 11:21:53 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Running flag flipping script and rebase to master Created 4 years, 5 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/quic_flags.h ('k') | net/tools/quic/quic_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_flags.cc
diff --git a/net/quic/quic_flags.cc b/net/quic/quic_flags.cc
index 06a30f0ed6f1ee85f64951efa11d9f80a2b844ce..ad2fcf9867e6ae523743929faa1169749a2a979f 100644
--- a/net/quic/quic_flags.cc
+++ b/net/quic/quic_flags.cc
@@ -81,18 +81,10 @@ bool FLAGS_quic_loss_recovery_use_largest_acked = true;
// retransmission alarm. Disabled because it breaks QUIC time loss detection.
bool FLAGS_quic_only_one_sending_alarm = false;
-// If true, the hash of the CHLO message will be used in the proof generated for
-// an SCUP message.
-bool FLAGS_quic_use_hash_in_scup = true;
-
// If true, QUIC public reset packets will have the \"pre-v33\" public header
// flags.
bool FLAGS_quic_use_old_public_reset_packets = true;
-// If true, the dispatcher is responsible for generating server designated
-// connection IDs.
-bool FLAGS_quic_dispatcher_creates_id = true;
-
// If true, checks if the CHLO is acceptable as a matter of policy.
bool FLAGS_quic_enable_chlo_policy = true;
@@ -116,7 +108,7 @@ bool FLAGS_quic_use_cheap_stateless_rejects = false;
// If true, treat timestamps from SO_TIMESTAMPING as QuicWallTimes rather
// than QuicTimes.
-bool FLAGS_quic_socket_walltimestamps = false;
+bool FLAGS_quic_socket_walltimestamps = true;
// If true, default to immediate forward secure once established on the
// server side, and the IPFS connection option disables this instead of
@@ -124,21 +116,21 @@ bool FLAGS_quic_socket_walltimestamps = false;
bool FLAGS_quic_default_immediate_forward_secure = true;
// If true, disables support for QUIC version 29 and earlier.
-bool FLAGS_quic_disable_pre_30 = false;
+bool FLAGS_quic_disable_pre_30 = true;
// If true, QUIC respect HTTP2 SETTINGS frame rather than always close the
// connection.
bool FLAGS_quic_respect_http2_settings_frame = true;
// Do not use a QuicAckListener in order to confirm a larger Path MTU.
-bool FLAGS_quic_no_mtu_discovery_ack_listener = false;
+bool FLAGS_quic_no_mtu_discovery_ack_listener = true;
// Deprecate QuicPacketCreator::next_packet_number_length_ because it's no
// longer necessary.
-bool FLAGS_quic_simple_packet_number_length = false;
+bool FLAGS_quic_simple_packet_number_length = true;
// If true, enables QUIC_VERSION_35.
-bool FLAGS_quic_enable_version_35 = false;
+bool FLAGS_quic_enable_version_35 = true;
// If true, enables QUIC_VERSION_36.
bool FLAGS_quic_enable_version_36 = false;
@@ -163,3 +155,7 @@ bool FLAGS_enable_async_get_proof = false;
// If true, neuter null encrypted packets before sending the next handshake
// message.
bool FLAGS_quic_neuter_unencrypted_when_sending = false;
+
+// If true, QuicAlarm::Update will call a faster UpdateImpl implementation
+// instead of canceling and reregistering the alarm.
+bool FLAGS_quic_change_alarms_efficiently = false;
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/tools/quic/quic_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698