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

Side by Side Diff: ppapi/c/private/ppb_tcp_server_socket_private.h

Issue 9283022: Exposed Listen and Accept methods to plugin. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added Destroy message for initialized but cancelled sockets. Created 8 years, 10 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
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
6 /* From private/ppb_tcp_server_socket_private.idl,
7 * modified Fri Feb 10 11:45:55 2012.
8 */
9
10 #ifndef PPAPI_C_PRIVATE_PPB_TCP_SERVER_SOCKET_PRIVATE_H_
11 #define PPAPI_C_PRIVATE_PPB_TCP_SERVER_SOCKET_PRIVATE_H_
12
13 #include "ppapi/c/pp_bool.h"
14 #include "ppapi/c/pp_completion_callback.h"
15 #include "ppapi/c/pp_instance.h"
16 #include "ppapi/c/pp_macros.h"
17 #include "ppapi/c/pp_resource.h"
18 #include "ppapi/c/pp_stdint.h"
19 #include "ppapi/c/private/ppb_net_address_private.h"
20
21 #define PPB_TCPSERVERSOCKET_PRIVATE_INTERFACE_0_1 \
22 "PPB_TCPServerSocket_Private;0.1"
23 #define PPB_TCPSERVERSOCKET_PRIVATE_INTERFACE \
24 PPB_TCPSERVERSOCKET_PRIVATE_INTERFACE_0_1
25
26 /**
27 * @file
28 * This file defines the <code>PPB_TCPServerSocket_Private</code> interface.
29 */
30
31
32 /**
33 * @addtogroup Interfaces
34 * @{
35 */
36 /**
37 * The <code>PPB_TCPServerSocket_Private</code> interface provides TCP
38 * server socket operations.
39 */
40 struct PPB_TCPServerSocket_Private_0_1 {
41 /**
42 * Allocates a TCP server socket resource. Also, starts lazy
43 * initialization of created socket. Initialization will complete
44 * only after Listen call.
45 */
46 PP_Resource (*Create)(PP_Instance instance);
47 /**
48 * Determines if a given resource is TCP server socket.
49 */
50 PP_Bool (*IsTCPServerSocket)(PP_Resource resource);
51 /**
52 * Binds |tcp_server_socket| to the address given by |addr| and
53 * starts listening. The |backlog| argument defines the maximum
54 * length to which the queue of pending connections may
55 * grow. |callback| is invoked when |tcp_server_socket| is ready to
56 * accept incoming connections or in the case of failure.
57 */
58 int32_t (*Listen)(PP_Resource tcp_server_socket,
59 const struct PP_NetAddress_Private* addr,
60 int32_t backlog,
61 struct PP_CompletionCallback callback);
62 /**
63 * Accepts single connection, creates instance of
64 * PPB_TCPSocket_Private and stores reference to it in
65 * |tcp_socket|. |callback| is invoked when connection is accepted
66 * or in the case of failure. This method can be called only after
67 * succesfull Listen call on |tcp_server_socket|.
68 */
69 int32_t (*Accept)(PP_Resource tcp_server_socket,
70 PP_Resource* tcp_socket,
71 struct PP_CompletionCallback callback);
72 /**
73 * Cancels all pending callbacks reporting PP_ERROR_ABORTED and
74 * closes the socket. Note: this method is implicitly called when
75 * server socket is destroyed.
76 */
77 void (*StopListening)(PP_Resource tcp_server_socket);
78 };
79
80 typedef struct PPB_TCPServerSocket_Private_0_1 PPB_TCPServerSocket_Private;
81 /**
82 * @}
83 */
84
85 #endif /* PPAPI_C_PRIVATE_PPB_TCP_SERVER_SOCKET_PRIVATE_H_ */
86
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698