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

Unified Diff: net/quic/crypto/quic_crypto_client_config.cc

Issue 159143007: Log QUIC public reset client address mismatch to a histogram. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Undo experimental changes Created 6 years, 10 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/crypto/quic_crypto_client_config.cc
===================================================================
--- net/quic/crypto/quic_crypto_client_config.cc (revision 250874)
+++ net/quic/crypto/quic_crypto_client_config.cc (working copy)
@@ -610,11 +610,6 @@
// TODO(agl):
// learn about updated SCFGs.
- StringPiece address;
- if (server_hello.GetStringPiece(kCADR, &address)) {
- out_params->client_address.assign(address.data(), address.size());
- }
-
StringPiece public_value;
if (!server_hello.GetStringPiece(kPUBS, &public_value)) {
*error_details = "server hello missing forward secure public value";

Powered by Google App Engine
This is Rietveld 408576698