OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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_BASE_TCP_CLIENT_SOCKET_WIN_H_ | 5 #ifndef NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_ |
6 #define NET_BASE_TCP_CLIENT_SOCKET_WIN_H_ | 6 #define NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_ |
7 | 7 |
8 #include <ws2tcpip.h> | 8 #include <ws2tcpip.h> |
9 | 9 |
10 #include "base/object_watcher.h" | 10 #include "base/object_watcher.h" |
11 #include "net/base/address_list.h" | 11 #include "net/base/address_list.h" |
12 #include "net/base/client_socket.h" | |
13 #include "net/base/completion_callback.h" | 12 #include "net/base/completion_callback.h" |
| 13 #include "net/socket/client_socket.h" |
14 | 14 |
15 namespace net { | 15 namespace net { |
16 | 16 |
17 class TCPClientSocketWin : public ClientSocket { | 17 class TCPClientSocketWin : public ClientSocket { |
18 public: | 18 public: |
19 // The IP address(es) and port number to connect to. The TCP socket will try | 19 // The IP address(es) and port number to connect to. The TCP socket will try |
20 // each IP address in the list until it succeeds in establishing a | 20 // each IP address in the list until it succeeds in establishing a |
21 // connection. | 21 // connection. |
22 explicit TCPClientSocketWin(const AddressList& addresses); | 22 explicit TCPClientSocketWin(const AddressList& addresses); |
23 | 23 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 CompletionCallback* read_callback_; | 67 CompletionCallback* read_callback_; |
68 | 68 |
69 // External callback; called when write is complete. | 69 // External callback; called when write is complete. |
70 CompletionCallback* write_callback_; | 70 CompletionCallback* write_callback_; |
71 | 71 |
72 DISALLOW_COPY_AND_ASSIGN(TCPClientSocketWin); | 72 DISALLOW_COPY_AND_ASSIGN(TCPClientSocketWin); |
73 }; | 73 }; |
74 | 74 |
75 } // namespace net | 75 } // namespace net |
76 | 76 |
77 #endif // NET_BASE_TCP_CLIENT_SOCKET_WIN_H_ | 77 #endif // NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_ |
OLD | NEW |