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

Unified Diff: net/quic/quic_flags.cc

Issue 2104633002: Landing recent QUIC changes until 6/24/2016 14:00 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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/quic/quic_framer.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 2a682ca81689cd7e5612ebd8d718921a8cf881a1..632e557e7dac7e818ec756fa6f5e1b809d8cd340 100644
--- a/net/quic/quic_flags.cc
+++ b/net/quic/quic_flags.cc
@@ -46,7 +46,7 @@ bool FLAGS_quic_enable_multipath = false;
bool FLAGS_quic_require_handshake_confirmation = false;
// If true, Cubic's epoch is shifted when the sender is application-limited.
-bool FLAGS_shift_quic_cubic_epoch_when_app_limited = false;
+bool FLAGS_shift_quic_cubic_epoch_when_app_limited = true;
// If true, QUIC will measure head of line (HOL) blocking due between
// streams due to packet losses on the headers stream. The
@@ -105,10 +105,6 @@ bool FLAGS_quic_only_one_sending_alarm = false;
// an SCUP message.
bool FLAGS_quic_use_hash_in_scup = true;
-// If true, consider receiving crypto frame on non crypto stream as memory
-// corruption.
-bool FLAGS_quic_detect_memory_corrpution = true;
-
// If true, QUIC public reset packets will have the \"pre-v33\" public header
// flags.
bool FLAGS_quic_use_old_public_reset_packets = true;
@@ -121,9 +117,6 @@ bool FLAGS_quic_ignore_srbf = true;
// recovery instead of PRR.
bool FLAGS_quic_allow_noprr = true;
-// If true, multi-packet CHLOs are explicitly disallowed.
-bool FLAGS_quic_disallow_multi_packet_chlo = true;
-
// Use a write path optimized for StreamFrames.
bool FLAGS_quic_use_optimized_write_path = true;
@@ -159,7 +152,21 @@ bool FLAGS_quic_socket_walltimestamps = false;
// If true, default to immediate forward secure once established on the
// server side, and the IPFS connection option disables this instead of
// enabling it.
-bool FLAGS_quic_default_immediate_forward_secure = 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;
+
+// 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;
+
+// Deprecate QuicPacketCreator::next_packet_number_length_ because it's no
+// longer necessary.
+bool FLAGS_quic_simple_packet_number_length = false;
+
+// If true, enables QUIC_VERSION_35.
+bool FLAGS_quic_enable_version_35 = false;
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698