blob: 43093045cabece0dee868bbfeb248737edad710a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 IPEndPoint;
class StreamSocket;
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<StreamSocket>* socket,
CompletionCallback* callback) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(ServerSocket);
};
} // namespace net
#endif // NET_SOCKET_TCP_SERVER_SOCKET_H_
|