OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ | 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ |
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ | 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 // Socket implementation. | 85 // Socket implementation. |
86 virtual int Read(IOBuffer* buf, int buf_len, | 86 virtual int Read(IOBuffer* buf, int buf_len, |
87 const CompletionCallback& callback) OVERRIDE; | 87 const CompletionCallback& callback) OVERRIDE; |
88 virtual int Write(IOBuffer* buf, int buf_len, | 88 virtual int Write(IOBuffer* buf, int buf_len, |
89 const CompletionCallback& callback) OVERRIDE; | 89 const CompletionCallback& callback) OVERRIDE; |
90 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; | 90 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; |
91 virtual bool SetSendBufferSize(int32 size) OVERRIDE; | 91 virtual bool SetSendBufferSize(int32 size) OVERRIDE; |
92 | 92 |
93 private: | 93 private: |
94 class SSLContext; | 94 class SSLContext; |
| 95 class PeerCertificateChain; |
95 friend class SSLClientSocket; | 96 friend class SSLClientSocket; |
96 friend class SSLContext; | 97 friend class SSLContext; |
97 | 98 |
98 bool Init(); | 99 bool Init(); |
99 void DoReadCallback(int result); | 100 void DoReadCallback(int result); |
100 void DoWriteCallback(int result); | 101 void DoWriteCallback(int result); |
101 | 102 |
102 bool DoTransportIO(); | 103 bool DoTransportIO(); |
103 int DoHandshake(); | 104 int DoHandshake(); |
104 int DoVerifyCert(int result); | 105 int DoVerifyCert(int result); |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 // the result to return on the *next* call to DoPayloadRead(). A value > 0 | 163 // the result to return on the *next* call to DoPayloadRead(). A value > 0 |
163 // indicates there is no pending result, otherwise 0 indicates EOF and < 0 | 164 // indicates there is no pending result, otherwise 0 indicates EOF and < 0 |
164 // indicates an error. | 165 // indicates an error. |
165 int pending_read_error_; | 166 int pending_read_error_; |
166 | 167 |
167 // Used by TransportWriteComplete() and TransportReadComplete() to signify an | 168 // Used by TransportWriteComplete() and TransportReadComplete() to signify an |
168 // error writing to the transport socket. A value of OK indicates no error. | 169 // error writing to the transport socket. A value of OK indicates no error. |
169 int transport_write_error_; | 170 int transport_write_error_; |
170 | 171 |
171 // Set when handshake finishes. | 172 // Set when handshake finishes. |
| 173 scoped_ptr<PeerCertificateChain> server_cert_chain_; |
172 scoped_refptr<X509Certificate> server_cert_; | 174 scoped_refptr<X509Certificate> server_cert_; |
173 CertVerifyResult server_cert_verify_result_; | 175 CertVerifyResult server_cert_verify_result_; |
174 bool completed_handshake_; | 176 bool completed_handshake_; |
175 | 177 |
176 // Stores client authentication information between ClientAuthHandler and | 178 // Stores client authentication information between ClientAuthHandler and |
177 // GetSSLCertRequestInfo calls. | 179 // GetSSLCertRequestInfo calls. |
178 bool client_auth_cert_needed_; | 180 bool client_auth_cert_needed_; |
179 // List of DER-encoded X.509 DistinguishedName of certificate authorities | 181 // List of DER-encoded X.509 DistinguishedName of certificate authorities |
180 // allowed by the server. | 182 // allowed by the server. |
181 std::vector<std::string> cert_authorities_; | 183 std::vector<std::string> cert_authorities_; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 // True if channel ID extension was negotiated. | 221 // True if channel ID extension was negotiated. |
220 bool channel_id_xtn_negotiated_; | 222 bool channel_id_xtn_negotiated_; |
221 // The request handle for |server_bound_cert_service_|. | 223 // The request handle for |server_bound_cert_service_|. |
222 ServerBoundCertService::RequestHandle channel_id_request_handle_; | 224 ServerBoundCertService::RequestHandle channel_id_request_handle_; |
223 BoundNetLog net_log_; | 225 BoundNetLog net_log_; |
224 }; | 226 }; |
225 | 227 |
226 } // namespace net | 228 } // namespace net |
227 | 229 |
228 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ | 230 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ |
OLD | NEW |