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 4d9d032a9041b0c9827818d6d4f6564fe45448cc..4b7fbb55516c7a07176b17211fa85a3a9776a425 100644 |
--- a/net/quic/quic_crypto_client_stream.cc |
+++ b/net/quic/quic_crypto_client_stream.cc |
@@ -458,7 +458,10 @@ void QuicCryptoClientStream::DoInitializeServerConfigUpdate( |
// Note that we verify the proof even if the cached proof is valid. |
DCHECK(crypto_config_->proof_verifier()); |
next_state_ = STATE_VERIFY_PROOF; |
+ return; |
} |
+ UMA_HISTOGRAM_COUNTS("Net.QuicNumServerConfigUpdateMessagesIgnored", 1); |
Alexei Svitkine (slow)
2014/09/19 15:14:17
This would probably be better served with an UMA_H
ramant (doing other things)
2014/09/19 17:00:04
Done.
|
+ next_state_ = STATE_VERIFY_PROOF_DONE; |
} |
QuicAsyncStatus QuicCryptoClientStream::DoVerifyProof( |