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

Unified Diff: net/quic/quic_crypto_client_stream.cc

Issue 413363005: QUIC - track CHLO's reject reason for secure QUIC vs insecure QUIC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0723
Patch Set: Added deprecated comment Created 6 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
Index: net/quic/quic_crypto_client_stream.cc
diff --git a/net/quic/quic_crypto_client_stream.cc b/net/quic/quic_crypto_client_stream.cc
index 56ed4038759c8bb08c8749aa5a86375f1bdb613c..295b45bf70932a5676c2c2e65fa3e35d1bc138c9 100644
--- a/net/quic/quic_crypto_client_stream.cc
+++ b/net/quic/quic_crypto_client_stream.cc
@@ -288,7 +288,7 @@ void QuicCryptoClientStream::DoHandshakeLoop(
}
error = crypto_config_->ProcessRejection(
*in, session()->connection()->clock()->WallNow(), cached,
- &crypto_negotiated_params_, &error_details);
+ server_id_.is_https(), &crypto_negotiated_params_, &error_details);
if (error != QUIC_NO_ERROR) {
CloseConnectionWithDetails(error, error_details);
return;

Powered by Google App Engine
This is Rietveld 408576698