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

Side by Side Diff: libraries/nacl-mounts/ppapi/cpp/private/tcp_server_socket_private.h

Issue 10392070: Socket subsystem implementation (Closed) Base URL: http://naclports.googlecode.com/svn/trunk/src/
Patch Set: Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PPAPI_CPP_PRIVATE_TCP_SERVER_SOCKET_PRIVATE_H_
6 #define PPAPI_CPP_PRIVATE_TCP_SERVER_SOCKET_PRIVATE_H_
7
8 #include "ppapi/cpp/resource.h"
9 #include "ppapi/c/pp_stdint.h"
10 #include "ppapi/c/private/ppb_tcp_server_socket_private.h"
11
12 namespace pp {
13
14 class CompletionCallback;
15 class InstanceHandle;
16
17 class TCPServerSocketPrivate : public Resource {
18 public:
19 explicit TCPServerSocketPrivate(const InstanceHandle& instance);
20
21 // Returns true if the required interface is available.
22 static bool IsAvailable();
23
24 int32_t Listen(const PP_NetAddress_Private* addr,
25 int32_t backlog,
26 const CompletionCallback& callback);
27 // Accepts incoming connection and stores resource of accepted
28 // socket into |socket|. If Accept returns PP_OK_COMPLETIONPENDING,
29 // the memory pointed by |socket| should stay valid until the
30 // |callback| is called or StopListening method is called.
31 int32_t Accept(PP_Resource* socket,
32 const CompletionCallback& callback);
33 void StopListening();
34 };
35
36 } // namespace pp
37
38 #endif // PPAPI_CPP_PRIVATE_TCP_SERVER_SOCKET_PRIVATE_H_
39
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698