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

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

Issue 2391103003: Landing Recent QUIC changes until 3:24 PM, Oct 01, 2016 UTC-4 (Closed)
Patch Set: Add new error code to quic_error_mapping.cc Created 4 years, 2 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 d7507a1f004c6af8b592c61e2cacba3625854d87..f68a3d958f681108972f224967eb93f19fce035f 100644
--- a/net/quic/core/quic_flags_list.h
+++ b/net/quic/core/quic_flags_list.h
@@ -53,7 +53,7 @@ QUIC_FLAG(bool, FLAGS_quic_use_old_public_reset_packets, true)
// If true, QUIC will use cheap stateless rejects without creating a full
// connection.
-QUIC_FLAG(bool, FLAGS_quic_use_cheap_stateless_rejects, false)
+QUIC_FLAG(bool, FLAGS_quic_use_cheap_stateless_rejects, true)
// If true, QUIC respect HTTP2 SETTINGS frame rather than always close the
// connection.
@@ -86,15 +86,6 @@ QUIC_FLAG(bool, FLAGS_quic_enforce_mtu_limit, false)
// the connection.
QUIC_FLAG(bool, FLAGS_graceful_emsgsize_on_mtu_probe, true)
-// If true, set a QUIC connection's last_sent_for_timeout_ to the send time of
-// the first packet sent after receiving a packet, even if the sent packet is
-// a retransmission
-QUIC_FLAG(bool, FLAGS_quic_better_last_send_for_timeout, true)
-
-// If true, send an explicit TTL in QUIC REJ messages to mitigate client clock
-// skew.
-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.
@@ -150,3 +141,16 @@ 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)
+
+// Use a more conservative backoff of 2x instead of 1.5x for handshake
+// retransmissions, as well as a larger minimum.
+QUIC_FLAG(bool, FLAGS_quic_conservative_handshake_retransmits, true)
+
+// If true, buffer packets while parsing public headers instead of parsing down
+// if CHLO is already buffered.
+QUIC_FLAG(bool, FLAGS_quic_buffer_packets_after_chlo, false)
+
+// Previously QUIC didn't register a packet as received until it was fully
+// processed, but now that flow control is implemented, it can be received once
+// decrypted.
+QUIC_FLAG(bool, FLAGS_quic_receive_packet_once_decrypted, false)
« no previous file with comments | « net/quic/core/quic_crypto_server_stream_test.cc ('k') | net/quic/core/quic_multipath_received_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698