Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3538)

Unified Diff: net/socket/server_socket.h

Issue 6820057: Added TCPServerSocket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/net.gyp ('k') | net/socket/tcp_client_socket_libevent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/server_socket.h
diff --git a/net/socket/server_socket.h b/net/socket/server_socket.h
new file mode 100644
index 0000000000000000000000000000000000000000..f037b036f413e10738fe5b19d0860af9ca4f755f
--- /dev/null
+++ b/net/socket/server_socket.h
@@ -0,0 +1,39 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_SOCKET_SERVER_SOCKET_H_
+#define NET_SOCKET_SERVER_SOCKET_H_
+
+#include "base/scoped_ptr.h"
+#include "net/base/completion_callback.h"
+
+namespace net {
+
+class ClientSocket;
+class IPEndPoint;
+
+class ServerSocket {
+ public:
+ ServerSocket() { }
+ virtual ~ServerSocket() { }
+
+ // Bind the socket and start listening. Destroy the socket to stop
+ // listening.
+ virtual int Listen(const net::IPEndPoint& address, int backlog) = 0;
+
+ // Gets current address the socket is bound to.
+ virtual int GetLocalAddress(IPEndPoint* address) const = 0;
+
+ // Accept connection. Callback is called when new connection is
+ // accepted.
+ virtual int Accept(scoped_ptr<ClientSocket>* socket,
+ CompletionCallback* callback) = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ServerSocket);
+};
+
+} // namespace net
+
+#endif // NET_SOCKET_TCP_SERVER_SOCKET_H_
« no previous file with comments | « net/net.gyp ('k') | net/socket/tcp_client_socket_libevent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698