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

Unified Diff: ppapi/api/private/ppb_flash_udp_socket.idl

Issue 8036036: Add Pepper API to use UDP (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | ppapi/c/private/ppb_flash_udp_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/ppb_flash_udp_socket.idl
diff --git a/ppapi/api/private/ppb_flash_udp_socket.idl b/ppapi/api/private/ppb_flash_udp_socket.idl
new file mode 100644
index 0000000000000000000000000000000000000000..7328db857e2ab45764243cc832e2d4597fd5e473
--- /dev/null
+++ b/ppapi/api/private/ppb_flash_udp_socket.idl
@@ -0,0 +1,59 @@
+/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/**
+ * This file defines the <code>PPB_Flash_UDPSocket</code> interface.
+ */
+
+label Chrome {
+ M16 = 0.1
+};
+
+interface PPB_Flash_UDPSocket {
+ /**
+ * Creates a UDP socket resource.
+ */
+ PP_Resource Create([in] PP_Instance instance_id);
+
+ /**
+ * Determines if a given resource is a UDP socket.
+ */
+ PP_Bool IsFlashUDPSocket([in] PP_Resource resource_id);
+
+ /* Creates a socket and binds to the address given by |addr|. */
+ int32_t Bind([in] PP_Resource udp_socket,
+ [in] PP_Flash_NetAddress addr,
+ [in] PP_CompletionCallback callback);
+
+ /* Performs a non-blocking recvfrom call on socket.
+ * Bind must be called first. |callback| is invoked when recvfrom
+ * reads data. You must call GetRecvFromAddress to recover the
+ * address the data was retrieved from.
+ */
+ int32_t RecvFrom([in] PP_Resource udp_socket,
+ [out] str_t buffer,
+ [in] int32_t num_bytes,
+ [in] PP_CompletionCallback callback);
+
+ /* Upon successful completion of RecvFrom, the address that the data
+ * was received from is stored in |addr|.
+ */
+ PP_Bool GetRecvFromAddress([in] PP_Resource udp_socket,
+ [out] PP_Flash_NetAddress addr);
+
+ /* Performs a non-blocking sendto call on the socket created and
+ * bound(has already called Bind). The callback |callback| is
+ * invoked when sendto completes.
+ */
+ int32_t SendTo([in] PP_Resource udp_socket,
+ [in] str_t buffer,
+ [in] int32_t num_bytes,
+ [in] PP_Flash_NetAddress addr,
+ [in] PP_CompletionCallback callback);
+
+ /* Cancels all pending reads and writes, and closes the socket. */
+ void Close([in] PP_Resource udp_socket);
+};
+
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | ppapi/c/private/ppb_flash_udp_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698