OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_MAC_H_ | 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_MAC_H_ |
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_MAC_H_ | 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_MAC_H_ |
7 | 7 |
8 #include <Security/Security.h> | 8 #include <Security/Security.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
(...skipping 20 matching lines...) Expand all Loading... |
32 const std::string& hostname, | 32 const std::string& hostname, |
33 const SSLConfig& ssl_config); | 33 const SSLConfig& ssl_config); |
34 ~SSLClientSocketMac(); | 34 ~SSLClientSocketMac(); |
35 | 35 |
36 // SSLClientSocket methods: | 36 // SSLClientSocket methods: |
37 virtual void GetSSLInfo(SSLInfo* ssl_info); | 37 virtual void GetSSLInfo(SSLInfo* ssl_info); |
38 virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info); | 38 virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info); |
39 virtual NextProtoStatus GetNextProto(std::string* proto); | 39 virtual NextProtoStatus GetNextProto(std::string* proto); |
40 | 40 |
41 // ClientSocket methods: | 41 // ClientSocket methods: |
42 virtual int Connect(CompletionCallback* callback, const BoundNetLog& net_log); | 42 virtual int Connect(CompletionCallback* callback); |
43 virtual void Disconnect(); | 43 virtual void Disconnect(); |
44 virtual bool IsConnected() const; | 44 virtual bool IsConnected() const; |
45 virtual bool IsConnectedAndIdle() const; | 45 virtual bool IsConnectedAndIdle() const; |
46 virtual int GetPeerAddress(AddressList* address) const; | 46 virtual int GetPeerAddress(AddressList* address) const; |
| 47 virtual const BoundNetLog& NetLog() const { return net_log_; } |
47 | 48 |
48 // Socket methods: | 49 // Socket methods: |
49 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback); | 50 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback); |
50 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback); | 51 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback); |
51 virtual bool SetReceiveBufferSize(int32 size); | 52 virtual bool SetReceiveBufferSize(int32 size); |
52 virtual bool SetSendBufferSize(int32 size); | 53 virtual bool SetSendBufferSize(int32 size); |
53 | 54 |
54 private: | 55 private: |
55 // Initializes the SSLContext. Returns a net error code. | 56 // Initializes the SSLContext. Returns a net error code. |
56 int InitializeSSLContext(); | 57 int InitializeSSLContext(); |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 // These are the IOBuffers used for operations on the underlying transport. | 131 // These are the IOBuffers used for operations on the underlying transport. |
131 scoped_refptr<IOBuffer> read_io_buf_; | 132 scoped_refptr<IOBuffer> read_io_buf_; |
132 scoped_refptr<IOBuffer> write_io_buf_; | 133 scoped_refptr<IOBuffer> write_io_buf_; |
133 | 134 |
134 BoundNetLog net_log_; | 135 BoundNetLog net_log_; |
135 }; | 136 }; |
136 | 137 |
137 } // namespace net | 138 } // namespace net |
138 | 139 |
139 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_MAC_H_ | 140 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_MAC_H_ |
OLD | NEW |