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

Unified Diff: net/quic/quic_crypto_client_stream.cc

Issue 1780983002: Provide valid port on HPKP reports for QUIC connections (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix missed tests Created 4 years, 9 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 3e52079f399c45730c154fa9c46e6c5dabee0ce4..2c81a20c39b1b514a78d42bc31ddd37d0fb1cba5 100644
--- a/net/quic/quic_crypto_client_stream.cc
+++ b/net/quic/quic_crypto_client_stream.cc
@@ -459,9 +459,10 @@ QuicAsyncStatus QuicCryptoClientStream::DoVerifyProof(
verify_ok_ = false;
QuicAsyncStatus status = verifier->VerifyProof(
- server_id_.host(), cached->server_config(), cached->certs(),
- cached->cert_sct(), cached->signature(), verify_context_.get(),
- &verify_error_details_, &verify_details_, proof_verify_callback);
+ server_id_.host(), server_id_.port(), cached->server_config(),
+ cached->certs(), cached->cert_sct(), cached->signature(),
+ verify_context_.get(), &verify_error_details_, &verify_details_,
+ proof_verify_callback);
switch (status) {
case QUIC_PENDING:

Powered by Google App Engine
This is Rietveld 408576698