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 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_NET_CONNECTOR_H_ | 5 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_NET_CONNECTOR_H_ |
6 #define PPAPI_C_PRIVATE_PPB_FLASH_NET_CONNECTOR_H_ | 6 #define PPAPI_C_PRIVATE_PPB_FLASH_NET_CONNECTOR_H_ |
7 | 7 |
8 // TODO(viettrungluu): Remove this interface; it's on life-support right now. | 8 // TODO(viettrungluu): Remove this interface; it's on life-support right now. |
9 | 9 |
10 #include "ppapi/c/pp_bool.h" | 10 #include "ppapi/c/pp_bool.h" |
11 #include "ppapi/c/pp_instance.h" | 11 #include "ppapi/c/pp_instance.h" |
12 #include "ppapi/c/pp_resource.h" | 12 #include "ppapi/c/pp_resource.h" |
13 #include "ppapi/c/private/ppb_flash_file.h" // For |PP_FileHandle|. | 13 #include "ppapi/c/private/ppb_flash_file.h" // For |PP_FileHandle|. |
14 #include "ppapi/c/private/ppb_net_address_private.h" | 14 #include "ppapi/c/private/ppb_net_address_private.h" |
15 | 15 |
16 #define PPB_FLASH_NETCONNECTOR_INTERFACE "PPB_Flash_NetConnector;0.2" | 16 #define PPB_FLASH_NETCONNECTOR_INTERFACE "PPB_Flash_NetConnector;0.2" |
17 | 17 |
18 struct PPB_Flash_NetConnector { | 18 struct PPB_Flash_NetConnector_0_2 { |
19 PP_Resource (*Create)(PP_Instance instance_id); | 19 PP_Resource (*Create)(PP_Instance instance_id); |
20 PP_Bool (*IsFlashNetConnector)(PP_Resource resource_id); | 20 PP_Bool (*IsFlashNetConnector)(PP_Resource resource_id); |
21 | 21 |
22 // Connect to a TCP port given as a host-port pair. The local and remote | 22 // Connect to a TCP port given as a host-port pair. The local and remote |
23 // addresses of the connection (if successful) are returned in | 23 // addresses of the connection (if successful) are returned in |
24 // |local_addr_out| and |remote_addr_out|, respectively, if non-null. | 24 // |local_addr_out| and |remote_addr_out|, respectively, if non-null. |
25 int32_t (*ConnectTcp)(PP_Resource connector_id, | 25 int32_t (*ConnectTcp)(PP_Resource connector_id, |
26 const char* host, | 26 const char* host, |
27 uint16_t port, | 27 uint16_t port, |
28 PP_FileHandle* socket_out, | 28 PP_FileHandle* socket_out, |
29 struct PP_NetAddress_Private* local_addr_out, | 29 struct PP_NetAddress_Private* local_addr_out, |
30 struct PP_NetAddress_Private* remote_addr_out, | 30 struct PP_NetAddress_Private* remote_addr_out, |
31 struct PP_CompletionCallback callback); | 31 struct PP_CompletionCallback callback); |
32 | 32 |
33 // Same as |ConnectTcp()|, but connecting to the address given by |addr|. A | 33 // Same as |ConnectTcp()|, but connecting to the address given by |addr|. A |
34 // typical use-case would be for reconnections. | 34 // typical use-case would be for reconnections. |
35 int32_t (*ConnectTcpAddress)(PP_Resource connector_id, | 35 int32_t (*ConnectTcpAddress)(PP_Resource connector_id, |
36 const struct PP_NetAddress_Private* addr, | 36 const struct PP_NetAddress_Private* addr, |
37 PP_FileHandle* socket_out, | 37 PP_FileHandle* socket_out, |
38 struct PP_NetAddress_Private* local_addr_out, | 38 struct PP_NetAddress_Private* local_addr_out, |
39 struct PP_NetAddress_Private* remote_addr_out, | 39 struct PP_NetAddress_Private* remote_addr_out, |
40 struct PP_CompletionCallback callback); | 40 struct PP_CompletionCallback callback); |
41 }; | 41 }; |
42 | 42 |
| 43 typedef struct PPB_Flash_NetConnector_0_2 PPB_Flash_NetConnector; |
| 44 |
43 #endif // PPAPI_C_PRIVATE_PPB_FLASH_NET_CONNECTOR_H_ | 45 #endif // PPAPI_C_PRIVATE_PPB_FLASH_NET_CONNECTOR_H_ |
OLD | NEW |