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

Unified Diff: net/base/ssl_info.cc

Issue 8401024: Disable SPDY IP pooling for SSL connections with client authentication. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove an incorrect test case Created 9 years, 2 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/base/ssl_info.h ('k') | net/socket/socket_test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/ssl_info.cc
===================================================================
--- net/base/ssl_info.cc (revision 107497)
+++ net/base/ssl_info.cc (working copy)
@@ -25,9 +25,10 @@
cert_status = info.cert_status;
security_bits = info.security_bits;
connection_status = info.connection_status;
- public_key_hashes = info.public_key_hashes;
is_issued_by_known_root = info.is_issued_by_known_root;
+ client_cert_sent = info.client_cert_sent;
handshake_type = info.handshake_type;
+ public_key_hashes = info.public_key_hashes;
return *this;
}
@@ -37,8 +38,9 @@
security_bits = -1;
connection_status = 0;
is_issued_by_known_root = false;
+ client_cert_sent = false;
+ handshake_type = HANDSHAKE_UNKNOWN;
public_key_hashes.clear();
- handshake_type = HANDSHAKE_UNKNOWN;
}
void SSLInfo::SetCertError(int error) {
« no previous file with comments | « net/base/ssl_info.h ('k') | net/socket/socket_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698