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 | 5 |
6 /* From private/ppb_flash_tcp_socket.idl modified Wed Nov 9 12:53:35 2011. */ | 6 /* From private/ppb_flash_tcp_socket.idl modified Thu Nov 10 10:21:43 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_TCP_SOCKET_H_ | 8 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_TCP_SOCKET_H_ |
9 #define PPAPI_C_PRIVATE_PPB_FLASH_TCP_SOCKET_H_ | 9 #define PPAPI_C_PRIVATE_PPB_FLASH_TCP_SOCKET_H_ |
10 | 10 |
11 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
12 #include "ppapi/c/pp_completion_callback.h" | 12 #include "ppapi/c/pp_completion_callback.h" |
13 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
14 #include "ppapi/c/pp_macros.h" | 14 #include "ppapi/c/pp_macros.h" |
15 #include "ppapi/c/pp_resource.h" | 15 #include "ppapi/c/pp_resource.h" |
16 #include "ppapi/c/pp_stdint.h" | 16 #include "ppapi/c/pp_stdint.h" |
17 #include "ppapi/c/private/ppb_net_address_private.h" | 17 #include "ppapi/c/private/ppb_net_address_private.h" |
18 | 18 |
19 #define PPB_FLASH_TCPSOCKET_INTERFACE_0_2 "PPB_Flash_TCPSocket;0.2" | 19 #define PPB_FLASH_TCPSOCKET_INTERFACE_0_2 "PPB_Flash_TCPSocket;0.2" |
20 #define PPB_FLASH_TCPSOCKET_INTERFACE PPB_FLASH_TCPSOCKET_INTERFACE_0_2 | 20 #define PPB_FLASH_TCPSOCKET_INTERFACE PPB_FLASH_TCPSOCKET_INTERFACE_0_2 |
21 | 21 |
22 /** | 22 /** |
23 * @file | 23 * @file |
24 * This file defines the <code>PPB_Flash_TCPSocket</code> interface. | 24 * This file defines the <code>PPB_Flash_TCPSocket</code> interface. |
25 */ | 25 */ |
26 | 26 |
27 | 27 |
28 /** | 28 /** |
29 * @addtogroup Interfaces | 29 * @addtogroup Interfaces |
30 * @{ | 30 * @{ |
31 */ | 31 */ |
32 /** | 32 /** |
33 * The <code>PPB_Flash_TCPSocket</code> interface provides TCP socket | 33 * The <code>PPB_Flash_TCPSocket</code> interface provides TCP socket |
34 * operations. | 34 * operations. |
35 */ | 35 */ |
36 struct PPB_Flash_TCPSocket { | 36 struct PPB_Flash_TCPSocket_0_2 { |
37 /** | 37 /** |
38 * Allocates a TCP socket resource. | 38 * Allocates a TCP socket resource. |
39 */ | 39 */ |
40 PP_Resource (*Create)(PP_Instance instance); | 40 PP_Resource (*Create)(PP_Instance instance); |
41 /** | 41 /** |
42 * Determines if a given resource is TCP socket. | 42 * Determines if a given resource is TCP socket. |
43 */ | 43 */ |
44 PP_Bool (*IsFlashTCPSocket)(PP_Resource resource); | 44 PP_Bool (*IsFlashTCPSocket)(PP_Resource resource); |
45 /** | 45 /** |
46 * Connects to a TCP port given as a host-port pair. | 46 * Connects to a TCP port given as a host-port pair. |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 /** | 114 /** |
115 * Cancels any IO that may be pending, and disconnects the socket. Any pending | 115 * Cancels any IO that may be pending, and disconnects the socket. Any pending |
116 * callbacks will still run, reporting PP_Error_Aborted if pending IO was | 116 * callbacks will still run, reporting PP_Error_Aborted if pending IO was |
117 * interrupted. It is NOT valid to call Connect() again after a call to this | 117 * interrupted. It is NOT valid to call Connect() again after a call to this |
118 * method. Note: If the socket is destroyed when it is still connected, then | 118 * method. Note: If the socket is destroyed when it is still connected, then |
119 * it will be implicitly disconnected, so you are not required to call this | 119 * it will be implicitly disconnected, so you are not required to call this |
120 * method. | 120 * method. |
121 */ | 121 */ |
122 void (*Disconnect)(PP_Resource tcp_socket); | 122 void (*Disconnect)(PP_Resource tcp_socket); |
123 }; | 123 }; |
| 124 |
| 125 typedef struct PPB_Flash_TCPSocket_0_2 PPB_Flash_TCPSocket; |
124 /** | 126 /** |
125 * @} | 127 * @} |
126 */ | 128 */ |
127 | 129 |
128 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_TCP_SOCKET_H_ */ | 130 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_TCP_SOCKET_H_ */ |
129 | 131 |
OLD | NEW |