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

Unified Diff: net/quic/quic_crypto_server_stream.cc

Issue 2176193003: deprecate FLAGS_quic_enable_chlo_policy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@127871521
Patch Set: Created 4 years, 5 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 | « no previous file | net/quic/quic_crypto_server_stream_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_crypto_server_stream.cc
diff --git a/net/quic/quic_crypto_server_stream.cc b/net/quic/quic_crypto_server_stream.cc
index a2f1a0d22260eb4e1bf788d49bc9a086f20c9ef0..6027079ff20e9cfb558e3bb451a8f34d3f53673f 100644
--- a/net/quic/quic_crypto_server_stream.cc
+++ b/net/quic/quic_crypto_server_stream.cc
@@ -428,8 +428,7 @@ QuicErrorCode QuicCryptoServerStream::ProcessClientHello(
string* error_details) {
QuicServerSessionBase* session_base =
static_cast<QuicServerSessionBase*>(session());
- if (FLAGS_quic_enable_chlo_policy &&
- !session_base->CanAcceptClientHello(message, error_details)) {
+ if (!session_base->CanAcceptClientHello(message, error_details)) {
return QUIC_HANDSHAKE_FAILED;
}
« no previous file with comments | « no previous file | net/quic/quic_crypto_server_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698