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

Side by Side Diff: net/quic/quic_flags.cc

Issue 1663493003: Postpone checking peer address change after the packet is successfully (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@113259867
Patch Set: Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « net/quic/quic_flags.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/quic/quic_flags.h" 5 #include "net/quic/quic_flags.h"
6 6
7 // When true, the use time based loss detection instead of nack. 7 // When true, the use time based loss detection instead of nack.
8 bool FLAGS_quic_use_time_loss_detection = false; 8 bool FLAGS_quic_use_time_loss_detection = false;
9 9
10 // If true, it will return as soon as an error is detected while validating 10 // If true, it will return as soon as an error is detected while validating
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 163
164 // If on, max number of incoming and outgoing streams will be different. 164 // If on, max number of incoming and outgoing streams will be different.
165 // Incoming will be a little higher than outgoing to tolerate race condition. 165 // Incoming will be a little higher than outgoing to tolerate race condition.
166 bool FLAGS_quic_different_max_num_open_streams = true; 166 bool FLAGS_quic_different_max_num_open_streams = true;
167 167
168 // If true, QUIC should correctly report if it supports ChaCha20. Otherwise, 168 // If true, QUIC should correctly report if it supports ChaCha20. Otherwise,
169 // QUIC will lie and claim that it does not support ChaCha20. The primary use 169 // QUIC will lie and claim that it does not support ChaCha20. The primary use
170 // case for this is places where ChaCha20 is prohibitively expensive compared to 170 // case for this is places where ChaCha20 is prohibitively expensive compared to
171 // AES-GCM. 171 // AES-GCM.
172 bool FLAGS_quic_crypto_server_config_default_has_chacha20 = true; 172 bool FLAGS_quic_crypto_server_config_default_has_chacha20 = true;
173
174 // If true, checking for peer address change is postponed after the packet gets
175 // decrypted.
176 bool FLAGS_check_peer_address_change_after_decryption = true;
OLDNEW
« no previous file with comments | « net/quic/quic_flags.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698