summaryrefslogtreecommitdiffstats
path: root/net/socket/socket_test_util.h
diff options
context:
space:
mode:
authorwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-28 01:18:10 +0000
committerwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-28 01:18:10 +0000
commit17a60a5a757ff61b996ca0ce0ebc2dc91ec5c9a9 (patch)
tree379f4c97f42050fa4fac1a6c15b02d33fa91c794 /net/socket/socket_test_util.h
parent53a663c3e9be86ebc3368680e6e2e93b20ef4418 (diff)
downloadchromium_src-17a60a5a757ff61b996ca0ce0ebc2dc91ec5c9a9.zip
chromium_src-17a60a5a757ff61b996ca0ce0ebc2dc91ec5c9a9.tar.gz
chromium_src-17a60a5a757ff61b996ca0ce0ebc2dc91ec5c9a9.tar.bz2
Disable SPDY IP pooling for SSL connections with client authentication.
Add a "bool client_cert_sent" member to SSLInfo to extract this info from SSLClientSocket. R=rtenneti@chromium.org BUG=101778 TEST=new unit test Review URL: http://codereview.chromium.org/8401024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107671 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/socket/socket_test_util.h')
-rw-r--r--net/socket/socket_test_util.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h
index 7e69da8..cc90516 100644
--- a/net/socket/socket_test_util.h
+++ b/net/socket/socket_test_util.h
@@ -264,8 +264,9 @@ struct SSLSocketDataProvider {
SSLClientSocket::NextProtoStatus next_proto_status;
std::string next_proto;
bool was_npn_negotiated;
+ bool client_cert_sent;
net::SSLCertRequestInfo* cert_request_info;
- scoped_refptr<X509Certificate> cert_;
+ scoped_refptr<X509Certificate> cert;
};
// A DataProvider where the client must write a request before the reads (e.g.