OLD | NEW |
1 // Copyright (c) 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_SOCKS_CLIENT_SOCKET_H_ | 5 #ifndef NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ |
6 #define NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ | 6 #define NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
(...skipping 28 matching lines...) Expand all Loading... |
40 SOCKSClientSocket(ClientSocket* transport_socket, | 40 SOCKSClientSocket(ClientSocket* transport_socket, |
41 const HostResolver::RequestInfo& req_info, | 41 const HostResolver::RequestInfo& req_info, |
42 HostResolver* host_resolver); | 42 HostResolver* host_resolver); |
43 | 43 |
44 // On destruction Disconnect() is called. | 44 // On destruction Disconnect() is called. |
45 virtual ~SOCKSClientSocket(); | 45 virtual ~SOCKSClientSocket(); |
46 | 46 |
47 // ClientSocket methods: | 47 // ClientSocket methods: |
48 | 48 |
49 // Does the SOCKS handshake and completes the protocol. | 49 // Does the SOCKS handshake and completes the protocol. |
50 virtual int Connect(CompletionCallback* callback, const BoundNetLog& net_log); | 50 virtual int Connect(CompletionCallback* callback); |
51 virtual void Disconnect(); | 51 virtual void Disconnect(); |
52 virtual bool IsConnected() const; | 52 virtual bool IsConnected() const; |
53 virtual bool IsConnectedAndIdle() const; | 53 virtual bool IsConnectedAndIdle() const; |
| 54 virtual const BoundNetLog& NetLog() const { return net_log_; } |
54 | 55 |
55 // Socket methods: | 56 // Socket methods: |
56 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback); | 57 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback); |
57 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback); | 58 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback); |
58 | 59 |
59 virtual bool SetReceiveBufferSize(int32 size); | 60 virtual bool SetReceiveBufferSize(int32 size); |
60 virtual bool SetSendBufferSize(int32 size); | 61 virtual bool SetSendBufferSize(int32 size); |
61 | 62 |
62 virtual int GetPeerAddress(AddressList* address) const; | 63 virtual int GetPeerAddress(AddressList* address) const; |
63 | 64 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 HostResolver::RequestInfo host_request_info_; | 134 HostResolver::RequestInfo host_request_info_; |
134 | 135 |
135 BoundNetLog net_log_; | 136 BoundNetLog net_log_; |
136 | 137 |
137 DISALLOW_COPY_AND_ASSIGN(SOCKSClientSocket); | 138 DISALLOW_COPY_AND_ASSIGN(SOCKSClientSocket); |
138 }; | 139 }; |
139 | 140 |
140 } // namespace net | 141 } // namespace net |
141 | 142 |
142 #endif // NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ | 143 #endif // NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ |
OLD | NEW |