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

Unified Diff: net/quic/quic_crypto_client_stream.cc

Issue 1437023002: Landing Recent QUIC changes until 2015-11-09 20:32 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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_connection_test.cc ('k') | net/quic/quic_crypto_client_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_client_stream.cc
diff --git a/net/quic/quic_crypto_client_stream.cc b/net/quic/quic_crypto_client_stream.cc
index 98668e24e4a544da1f4dba83965d02ca11b27594..7783a257e150ff32bd3fcb88806ba42f68fa061a 100644
--- a/net/quic/quic_crypto_client_stream.cc
+++ b/net/quic/quic_crypto_client_stream.cc
@@ -155,10 +155,8 @@ void QuicCryptoClientStream::HandleServerConfigUpdateMessage(
QuicCryptoClientConfig::CachedState* cached =
crypto_config_->LookupOrCreate(server_id_);
QuicErrorCode error = crypto_config_->ProcessServerConfigUpdate(
- server_config_update,
- session()->connection()->clock()->WallNow(),
- cached,
- &crypto_negotiated_params_,
+ server_config_update, session()->connection()->clock()->WallNow(),
+ session()->connection()->version(), cached, &crypto_negotiated_params_,
&error_details);
if (error != QUIC_NO_ERROR) {
@@ -370,8 +368,9 @@ void QuicCryptoClientStream::DoReceiveREJ(
stateless_reject_received_ = in->tag() == kSREJ;
string error_details;
QuicErrorCode error = crypto_config_->ProcessRejection(
- *in, session()->connection()->clock()->WallNow(), cached,
- &crypto_negotiated_params_, &error_details);
+ *in, session()->connection()->clock()->WallNow(),
+ session()->connection()->version(), cached, &crypto_negotiated_params_,
+ &error_details);
if (error != QUIC_NO_ERROR) {
next_state_ = STATE_NONE;
@@ -406,8 +405,8 @@ QuicAsyncStatus QuicCryptoClientStream::DoVerifyProof(
QuicAsyncStatus status = verifier->VerifyProof(
server_id_.host(), cached->server_config(), cached->certs(),
- cached->signature(), verify_context_.get(), &verify_error_details_,
- &verify_details_, proof_verify_callback);
+ cached->cert_sct(), cached->signature(), verify_context_.get(),
+ &verify_error_details_, &verify_details_, proof_verify_callback);
switch (status) {
case QUIC_PENDING:
« no previous file with comments | « net/quic/quic_connection_test.cc ('k') | net/quic/quic_crypto_client_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698