| 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 CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_SERVER_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_SERVER_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_SERVER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_SERVER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
| 14 #include "content/browser/renderer_host/p2p/socket_host.h" | 14 #include "content/browser/renderer_host/p2p/socket_host.h" |
| 15 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
| 16 #include "content/common/p2p_sockets.h" | 16 #include "content/common/p2p_sockets.h" |
| 17 #include "net/base/completion_callback.h" |
| 17 #include "net/socket/tcp_server_socket.h" | 18 #include "net/socket/tcp_server_socket.h" |
| 18 | 19 |
| 19 namespace net { | 20 namespace net { |
| 20 class StreamSocket; | 21 class StreamSocket; |
| 21 } // namespace net | 22 } // namespace net |
| 22 | 23 |
| 23 namespace content { | 24 namespace content { |
| 24 | 25 |
| 25 class CONTENT_EXPORT P2PSocketHostTcpServer : public P2PSocketHost { | 26 class CONTENT_EXPORT P2PSocketHostTcpServer : public P2PSocketHost { |
| 26 public: | 27 public: |
| (...skipping 21 matching lines...) Expand all Loading... |
| 48 | 49 |
| 49 // Callback for Accept(). | 50 // Callback for Accept(). |
| 50 void OnAccepted(int result); | 51 void OnAccepted(int result); |
| 51 | 52 |
| 52 scoped_ptr<net::ServerSocket> socket_; | 53 scoped_ptr<net::ServerSocket> socket_; |
| 53 net::IPEndPoint local_address_; | 54 net::IPEndPoint local_address_; |
| 54 | 55 |
| 55 scoped_ptr<net::StreamSocket> accept_socket_; | 56 scoped_ptr<net::StreamSocket> accept_socket_; |
| 56 AcceptedSocketsMap accepted_sockets_; | 57 AcceptedSocketsMap accepted_sockets_; |
| 57 | 58 |
| 58 net::OldCompletionCallbackImpl<P2PSocketHostTcpServer> accept_callback_; | 59 net::CompletionCallback accept_callback_; |
| 59 | 60 |
| 60 DISALLOW_COPY_AND_ASSIGN(P2PSocketHostTcpServer); | 61 DISALLOW_COPY_AND_ASSIGN(P2PSocketHostTcpServer); |
| 61 }; | 62 }; |
| 62 | 63 |
| 63 } // namespace content | 64 } // namespace content |
| 64 | 65 |
| 65 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_SERVER_H_ | 66 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_SERVER_H_ |
| OLD | NEW |