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

Unified Diff: net/quic/quic_flags.cc

Issue 1277723003: Landing Recent QUIC changes until 8/4/2015 20:30 UTC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Dont enable FLAGS_quic_require_handshake_confirmation to fix crypto tests Created 5 years, 4 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_http_stream.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 39810a91a05cd445e52c06f3297e4e0182d78ced..cdf4a3a49436723077cc79e26451ce257091eb57 100644
--- a/net/quic/quic_flags.cc
+++ b/net/quic/quic_flags.cc
@@ -46,9 +46,6 @@ bool FLAGS_enable_quic_stateless_reject_support = true;
// If true, flow controller may grow the receive window size if necessary.
bool FLAGS_quic_auto_tune_receive_window = true;
-// Enables sending of FEC packet only when FEC alarm goes off.
-bool FLAGS_quic_send_fec_packet_only_on_fec_alarm = true;
-
// Enables server-side path MTU discovery in QUIC.
bool FLAGS_quic_do_path_mtu_discovery = true;
@@ -76,3 +73,17 @@ bool FLAGS_quic_limit_max_cwnd = true;
// If true, don't serialize invalid HTTP headers when converting HTTP to SPDY.
bool FLAGS_spdy_strip_invalid_headers = true;
+
+// If true, instead of enforcing a fixed limit of 200 between the last
+// client-created stream ID and the next one, calculate the difference based on
+// get_max_open_streams().
+bool FLAGS_exact_stream_id_delta = true;
+
+// Limits the pacing burst out of quiescence to the current congestion window in
+// packets.
+bool FLAGS_quic_limit_pacing_burst = true;
+
+// If true, require handshake confirmation for QUIC connections, functionally
+// disabling 0-rtt handshakes.
+// TODO(rtenneti): Enable this flag after fixing tests.
+bool FLAGS_quic_require_handshake_confirmation = false;
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_http_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698