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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc

Issue 8555002: Added NaCl proxy for TCP/UDP (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc b/ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc
new file mode 100644
index 0000000000000000000000000000000000000000..9d44775ada2752980c8d74d9d0d701fc65950050
--- /dev/null
+++ b/ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc
@@ -0,0 +1,63 @@
+# Copyright (c) 2011 The Native Client Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+#
+# RPC methods used to implement PPB_UDPSocket_Private calls from the plugin.
+# See ppapi/c/private/ppb_udp_socket_private.h for interface details.
+
+{
+ 'name': 'Ppb_UDPSocketPrivate',
+ 'rpcs': [
+ {'name': 'PPB_UDPSocket_Private_Create',
+ 'inputs': [['instance_id', 'PP_Instance'], # PP_Instance
+ ],
+ 'outputs': [['resource', 'PP_Resource'], # PP_Resource
+ ]
+ },
+ {'name': 'PPB_UDPSocket_Private_IsUDPSocket',
+ 'inputs': [['resource_id', 'PP_Resource'], # PP_Resource
+ ],
+ 'outputs': [['is_udp_socket_private', 'int32_t'], # PP_Bool
+ ]
+ },
+ {'name': 'PPB_UDPSocket_Private_Bind',
+ 'inputs': [['udp_socket', 'PP_Resource'], # PP_Resource
+ ['addr', 'char[]'], # PP_NetAddress_Private*
+ ['callback_id', 'int32_t'],
+ ],
+ 'outputs': [['pp_error', 'int32_t'],
+ ]
+ },
+ {'name': 'PPB_UDPSocket_Private_RecvFrom',
+ 'inputs': [['udp_socket', 'PP_Resource'], # PP_Resource
+ ['num_bytes', 'int32_t'],
+ ['callback_id', 'int32_t']
+ ],
+ 'outputs': [['buffer', 'char[]'],
+ ['pp_error_or_bytes', 'int32_t'],
+ ]
+ },
+ {'name': 'PPB_UDPSocket_Private_GetRecvFromAddress',
+ 'inputs': [['udp_socket', 'PP_Resource'], # PP_Resource
+ ],
+ 'outputs': [['addr', 'char[]'], # PP_NetAddress_Private*
+ ['success', 'int32_t'], # PP_Bool
+ ]
+ },
+ {'name': 'PPB_UDPSocket_Private_SendTo',
+ 'inputs': [['udp_socket', 'PP_Resource'], # PP_Resource
+ ['buffer', 'char[]'],
+ ['num_bytes', 'int32_t'],
+ ['addr', 'char[]'], # PP_NetAddress_Private*
+ ['callback_id', 'int32_t']
+ ],
+ 'outputs': [['pp_error_or_bytes', 'int32_t'],
+ ]
+ },
+ {'name': 'PPB_UDPSocket_Private_Close',
+ 'inputs': [['udp_socket', 'PP_Resource'], # PP_Resource
+ ],
+ 'outputs': []
+ },
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698