| Index: net/spdy/spdy_session.cc
|
| ===================================================================
|
| --- net/spdy/spdy_session.cc (revision 286637)
|
| +++ net/spdy/spdy_session.cc (working copy)
|
| @@ -625,6 +625,10 @@
|
| if (!GetSSLInfo(&ssl_info, &was_npn_negotiated, &protocol_negotiated))
|
| return true; // This is not a secure session, so all domains are okay.
|
|
|
| + // Disable pooling for secure sessions.
|
| + // TODO(rch): re-enable this.
|
| + return false;
|
| +#if 0
|
| bool unused = false;
|
| return
|
| !ssl_info.client_cert_sent &&
|
| @@ -632,6 +636,7 @@
|
| (ServerBoundCertService::GetDomainForHost(domain) ==
|
| ServerBoundCertService::GetDomainForHost(host_port_pair().host()))) &&
|
| ssl_info.cert->VerifyNameMatch(domain, &unused);
|
| +#endif
|
| }
|
|
|
| int SpdySession::GetPushStream(
|
|
|