| Index: net/socket/ssl_client_socket_openssl.h
|
| ===================================================================
|
| --- net/socket/ssl_client_socket_openssl.h (revision 250122)
|
| +++ net/socket/ssl_client_socket_openssl.h (working copy)
|
| @@ -121,7 +121,7 @@
|
| void BufferSendComplete(int result);
|
| void BufferRecvComplete(int result);
|
| void TransportWriteComplete(int result);
|
| - void TransportReadComplete(int result);
|
| + int TransportReadComplete(int result);
|
|
|
| // Callback from the SSL layer that indicates the remote server is requesting
|
| // a certificate for this client.
|
| @@ -164,6 +164,10 @@
|
| // indicates an error.
|
| int pending_read_error_;
|
|
|
| + // Used by TransportWriteComplete() and TransportReadComplete() to signify an
|
| + // error writing to the transport socket. A value of OK indicates no error.
|
| + int transport_write_error_;
|
| +
|
| // Set when handshake finishes.
|
| scoped_refptr<X509Certificate> server_cert_;
|
| CertVerifyResult server_cert_verify_result_;
|
|
|