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

Unified Diff: net/quic/quic_flags.cc

Issue 1811043002: Landing Recent QUIC changes until 2016-03-15 16:26 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add an export clause. Created 4 years, 9 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_test.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 7dea7eccf8a67afaba6b5b8160040631300f3983..e1db0a0494738f1bef35d3f3761ad661eff7dbec 100644
--- a/net/quic/quic_flags.cc
+++ b/net/quic/quic_flags.cc
@@ -62,9 +62,6 @@ bool FLAGS_quic_measure_headers_hol_blocking_time = true;
// Disable QUIC's userspace pacing.
bool FLAGS_quic_disable_pacing = false;
-// If true, don't send QUIC packets if the send alarm is set.
-bool FLAGS_quic_respect_send_alarm2 = true;
-
// If true, Close the connection instead of writing unencrypted stream data.
bool FLAGS_quic_never_write_unencrypted_data = true;
@@ -74,16 +71,9 @@ bool FLAGS_quic_require_fix = true;
// If true, headers stream will support receiving PUSH_PROMISE frames.
bool FLAGS_quic_supports_push_promise = false;
-// If true, QUIC will support RFC 7539 variants of ChaCha20 Poly1305.
-bool FLAGS_quic_use_rfc7539 = true;
-
// When turn on, log packet loss into transport connection stats LossEvent.
bool FLAGS_quic_log_loss_event = true;
-// If true, for QUIC authenticated encryption algorithms, last 8 bytes
-// of IV comprise packet path id and lower 7 bytes of packet number.
-bool FLAGS_quic_include_path_id_in_iv = true;
-
// If true, make sure new incoming streams correctly cede to higher
// priority (or batch) streams when doing QUIC writes.
bool FLAGS_quic_cede_correctly = true;
@@ -98,10 +88,6 @@ bool FLAGS_quic_different_max_num_open_streams = true;
// AES-GCM.
bool FLAGS_quic_crypto_server_config_default_has_chacha20 = true;
-// If true, checking for peer address change is postponed after the packet gets
-// decrypted.
-bool FLAGS_check_peer_address_change_after_decryption = true;
-
// If true, always log the cached network parameters, regardless of whether
// bandwidth-resumption has been enabled.
bool FLAGS_quic_log_received_parameters = true;
@@ -133,3 +119,22 @@ bool FLAGS_quic_inplace_encryption2 = true;
// If true, SpdyFramer will call OnStreamEnd from SpdyFramerVisitorInterface
// instead of empty-data sentinel calls when the stream is to be ended.
bool FLAGS_spdy_on_stream_end = true;
+
+// If true, QuicCryptoServerConfig will use cached compressed certificates
+// if the uncompressed certs to be compressed hits the cache.
+bool FLAGS_quic_use_cached_compressed_certs = true;
+
+// Enable a connection option allowing connections to time out if more than 5
+// consecutive RTOs are sent.
+bool FLAGS_quic_enable_rto_timeout = true;
+
+// Do not limit the max CWND to 200 packets in QUIC.
+bool FLAGS_quic_dont_limit_max_cwnd = true;
+
+// Don't copy QuicAckFrame or QuicStopWaitingFrame into the
+// QuicPacketGenerator.
+bool FLAGS_quic_dont_copy_acks = true;
+
+// Use a byte conservation approach instead of packet conservation in the
+// Slow Start Large Reduction experiment.
+bool FLAGS_quic_sslr_byte_conservation = true;
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_http_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698