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

Unified Diff: net/quic/quic_flags.cc

Issue 1660593004: Landing Recent QUIC changes until 01/28/2016 18:41 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0202
Patch Set: Created 4 years, 11 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_frame_list.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 60e94aa1561f81f6392664e8a12115575332346a..43f27c796a6d1354cd250ca0744b8c0174e78ea1 100644
--- a/net/quic/quic_flags.cc
+++ b/net/quic/quic_flags.cc
@@ -70,10 +70,6 @@ bool FLAGS_quic_measure_headers_hol_blocking_time = true;
// Disable QUIC's userspace pacing.
bool FLAGS_quic_disable_pacing = false;
-// If true, Use QUIC's GeneralLossAlgorithm implementation instead of
-// TcpLossAlgorithm or TimeLossAlgorithm.
-bool FLAGS_quic_general_loss_algorithm = true;
-
// If true, QUIC connections will timeout when packets are not being recieved,
// even if they are being sent.
bool FLAGS_quic_use_new_idle_timeout = true;
@@ -168,3 +164,13 @@ bool FLAGS_quic_crypto_proof_use_ref = true;
// If on, max number of incoming and outgoing streams will be different.
// Incoming will be a little higher than outgoing to tolerate race condition.
bool FLAGS_quic_different_max_num_open_streams = true;
+
+// If true, QUIC should correctly report if it supports ChaCha20. Otherwise,
+// QUIC will lie and claim that it does not support ChaCha20. The primary use
+// case for this is places where ChaCha20 is prohibitively expensive compared to
+// 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;
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_frame_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698