| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_TCP_CLIENT_SOCKET_H_ | 5 #ifndef NET_SOCKET_TCP_CLIENT_SOCKET_H_ |
| 6 #define NET_SOCKET_TCP_CLIENT_SOCKET_H_ | 6 #define NET_SOCKET_TCP_CLIENT_SOCKET_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 virtual void SetOmniboxSpeculation() OVERRIDE; | 49 virtual void SetOmniboxSpeculation() OVERRIDE; |
| 50 virtual bool WasEverUsed() const OVERRIDE; | 50 virtual bool WasEverUsed() const OVERRIDE; |
| 51 virtual bool UsingTCPFastOpen() const OVERRIDE; | 51 virtual bool UsingTCPFastOpen() const OVERRIDE; |
| 52 virtual bool WasNpnNegotiated() const OVERRIDE; | 52 virtual bool WasNpnNegotiated() const OVERRIDE; |
| 53 virtual NextProto GetNegotiatedProtocol() const OVERRIDE; | 53 virtual NextProto GetNegotiatedProtocol() const OVERRIDE; |
| 54 virtual bool GetSSLInfo(SSLInfo* ssl_info) OVERRIDE; | 54 virtual bool GetSSLInfo(SSLInfo* ssl_info) OVERRIDE; |
| 55 | 55 |
| 56 // Socket implementation. | 56 // Socket implementation. |
| 57 // Multiple outstanding requests are not supported. | 57 // Multiple outstanding requests are not supported. |
| 58 // Full duplex mode (reading and writing at the same time) is supported. | 58 // Full duplex mode (reading and writing at the same time) is supported. |
| 59 virtual int Read(IOBuffer* buf, int buf_len, | 59 virtual int Read(IOBuffer* buf, |
| 60 int buf_len, |
| 60 const CompletionCallback& callback) OVERRIDE; | 61 const CompletionCallback& callback) OVERRIDE; |
| 61 virtual int Write(IOBuffer* buf, int buf_len, | 62 virtual int Write(IOBuffer* buf, |
| 63 int buf_len, |
| 62 const CompletionCallback& callback) OVERRIDE; | 64 const CompletionCallback& callback) OVERRIDE; |
| 63 virtual int SetReceiveBufferSize(int32 size) OVERRIDE; | 65 virtual int SetReceiveBufferSize(int32 size) OVERRIDE; |
| 64 virtual int SetSendBufferSize(int32 size) OVERRIDE; | 66 virtual int SetSendBufferSize(int32 size) OVERRIDE; |
| 65 | 67 |
| 66 virtual bool SetKeepAlive(bool enable, int delay); | 68 virtual bool SetKeepAlive(bool enable, int delay); |
| 67 virtual bool SetNoDelay(bool no_delay); | 69 virtual bool SetNoDelay(bool no_delay); |
| 68 | 70 |
| 69 private: | 71 private: |
| 70 // State machine for connecting the socket. | 72 // State machine for connecting the socket. |
| 71 enum ConnectState { | 73 enum ConnectState { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 // Record of connectivity and transmissions, for use in speculative connection | 114 // Record of connectivity and transmissions, for use in speculative connection |
| 113 // histograms. | 115 // histograms. |
| 114 UseHistory use_history_; | 116 UseHistory use_history_; |
| 115 | 117 |
| 116 DISALLOW_COPY_AND_ASSIGN(TCPClientSocket); | 118 DISALLOW_COPY_AND_ASSIGN(TCPClientSocket); |
| 117 }; | 119 }; |
| 118 | 120 |
| 119 } // namespace net | 121 } // namespace net |
| 120 | 122 |
| 121 #endif // NET_SOCKET_TCP_CLIENT_SOCKET_H_ | 123 #endif // NET_SOCKET_TCP_CLIENT_SOCKET_H_ |
| OLD | NEW |