diff options
Diffstat (limited to 'net/spdy/spdy_http_stream.cc')
-rw-r--r-- | net/spdy/spdy_http_stream.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc index c84ba5c..dfc241f 100644 --- a/net/spdy/spdy_http_stream.cc +++ b/net/spdy/spdy_http_stream.cc @@ -517,8 +517,9 @@ void SpdyHttpStream::GetSSLInfo(SSLInfo* ssl_info) { void SpdyHttpStream::GetSSLCertRequestInfo( SSLCertRequestInfo* cert_request_info) { - DCHECK(stream_.get()); - stream_->GetSSLCertRequestInfo(cert_request_info); + // A SPDY stream cannot request client certificates. Client authentication may + // only occur during the initial SSL handshake. + NOTREACHED(); } bool SpdyHttpStream::IsSpdyHttpStream() const { |