Index: ppapi/api/dev/ppb_udp_socket_dev.idl |
diff --git a/ppapi/api/dev/ppb_udp_socket_dev.idl b/ppapi/api/dev/ppb_udp_socket_dev.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..632abd0ee6018e0f7749bda788f1ba89a73cafd5 |
--- /dev/null |
+++ b/ppapi/api/dev/ppb_udp_socket_dev.idl |
@@ -0,0 +1,109 @@ |
+/* Copyright (c) 2013 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_UDPSocket_Dev</code> interface. |
+ */ |
+ |
+[generate_thunk] |
+ |
+label Chrome { |
+ M29 = 0.1 |
+}; |
+ |
+[assert_size(4)] |
+enum PP_UDPSocket_Option_Dev { |
+ // Allows the socket to share the local address to which socket will |
bbudge
2013/06/10 12:59:56
s/to which socket/to which it/
yzshen1
2013/06/10 22:10:35
Done.
|
+ // be bound with other processes. Value's type should be PP_VARTYPE_BOOL. |
+ PP_UDPSOCKET_OPTION_ADDRESS_REUSE = 0, |
+ |
+ // Allows sending and receiving packets sent to and from broadcast addresses. |
bbudge
2013/06/10 12:59:56
s/sent//
yzshen1
2013/06/10 22:10:35
Done.
|
+ // Value's type should be PP_VARTYPE_BOOL. |
+ PP_UDPSOCKET_OPTION_BROADCAST = 1, |
+ |
+ // Specifies the total per-socket buffer space reserved for sends. Value's |
+ // type should be PP_VARTYPE_INT32. |
+ // Note: This is only treated as a hint for the browser to set the buffer |
+ // size. Even if SetOption() reports that this option has been successfully |
+ // set, the browser doesn't guarantee to conform to it. |
+ PP_UDPSOCKET_OPTION_SEND_BUFFER_SIZE = 2, |
+ |
+ // Specifies the total per-socket buffer space reserved for receives. Value's |
+ // type should be PP_VARTYPE_INT32. |
+ // Note: This is only treated as a hint for the browser to set the buffer |
+ // size. Even if SetOption() reports that this option has been successfully |
+ // set, the browser doesn't guarantee to conform to it. |
+ PP_UDPSOCKET_OPTION_RECV_BUFFER_SIZE = 3, |
+ |
+ // Specifies the receiving timeout. Value's type should be PP_VARTYPE_DOUBLE |
+ // which is in seconds. 0 (the default value) means the operation will never |
+ // timeout. |
+ PP_UDPSOCKET_OPTION_RECV_TIMEOUT = 4 |
+}; |
+ |
+interface PPB_UDPSocket_Dev { |
+ /** |
+ * Creates a UDP socket resource. |
+ */ |
+ PP_Resource Create([in] PP_Instance instance); |
+ |
+ /** |
+ * Determines if a given resource is a UDP socket. |
+ */ |
+ PP_Bool IsUDPSocket([in] PP_Resource resource); |
+ |
+ /** |
+ * Binds to the address given by |addr|. |
bbudge
2013/06/10 12:59:56
'addr' is a NetAddress?
yzshen1
2013/06/10 22:10:35
Done.
|
+ */ |
+ int32_t Bind([in] PP_Resource udp_socket, |
+ [in] PP_Resource addr, |
+ [in] PP_CompletionCallback callback); |
+ |
+ /** |
+ * Returns the address that the socket has bound to. A successful call to |
+ * Bind must be called first. Returns 0 if Bind fails, or if Close has |
+ * been called. |
bbudge
2013/06/10 12:59:56
'addr' is a NetAddress? Here and below. Perhaps a
yzshen1
2013/06/10 22:10:35
Done. I will also tidy up the document to use tags
|
+ */ |
+ PP_Resource GetBoundAddress([in] PP_Resource udp_socket); |
+ |
+ /** |
+ * Performs a non-blocking recvfrom call on socket. |
+ * Bind must be called first. |callback| is invoked when recvfrom reads data. |
+ */ |
+ int32_t RecvFrom([in] PP_Resource udp_socket, |
+ [out] str_t buffer, |
+ [in] int32_t num_bytes, |
+ [out] PP_Resource addr, |
+ [in] PP_CompletionCallback callback); |
+ |
+ /** |
+ * 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_Resource addr, |
+ [in] PP_CompletionCallback callback); |
+ |
+ /** |
+ * Cancels all pending reads and writes, and closes the socket. |
+ */ |
+ void Close([in] PP_Resource udp_socket); |
+ |
+ /** |
+ * Sets a socket option to |udp_socket|. Should be called before Bind(). |
+ * Possible values for |name|, |value| and |value|'s type are described in |
+ * PP_UDPSocketOption_Dev description. If no error occurs, returns PP_OK. |
+ * Otherwise, returns PP_ERROR_BADRESOURCE (if bad |udp_socket| provided), |
+ * PP_ERROR_BADARGUMENT (if bad name/value/value's type provided) or |
+ * PP_ERROR_FAILED in the case of internal errors. |
+ */ |
+ int32_t SetOption([in] PP_Resource udp_socket, |
+ [in] PP_UDPSocket_Option_Dev name, |
+ [in] PP_Var value, |
+ [in] PP_CompletionCallback callback); |
+}; |