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

Unified Diff: net/quic/quic_crypto_client_stream.cc

Issue 23766019: QuicCryptoClientConfig::ProcessServerHello should learn about updated (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 3 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/crypto/crypto_handshake.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_crypto_client_stream.cc
===================================================================
--- net/quic/quic_crypto_client_stream.cc (revision 221812)
+++ net/quic/quic_crypto_client_stream.cc (working copy)
@@ -234,7 +234,7 @@
return;
}
error = crypto_config_->ProcessRejection(
- cached, *in, session()->connection()->clock()->WallNow(),
+ *in, session()->connection()->clock()->WallNow(), cached,
&crypto_negotiated_params_, &error_details);
if (error != QUIC_NO_ERROR) {
CloseConnectionWithDetails(error, error_details);
@@ -334,8 +334,8 @@
return;
}
error = crypto_config_->ProcessServerHello(
- *in, session()->connection()->guid(), &crypto_negotiated_params_,
- &error_details);
+ *in, session()->connection()->guid(), cached,
+ &crypto_negotiated_params_, &error_details);
if (error != QUIC_NO_ERROR) {
CloseConnectionWithDetails(
error, "Server hello invalid: " + error_details);
« no previous file with comments | « net/quic/crypto/crypto_handshake.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698