Index: ppapi/api/private/ppb_udp_socket_private.idl |
diff --git a/ppapi/api/private/ppb_udp_socket_private.idl b/ppapi/api/private/ppb_udp_socket_private.idl |
index 4babbb4a4dbd915a962d354947fd3f986b5d4823..0076f5ea35757ea5e3d8902d95a603a6e2e09830 100644 |
--- a/ppapi/api/private/ppb_udp_socket_private.idl |
+++ b/ppapi/api/private/ppb_udp_socket_private.idl |
@@ -8,7 +8,8 @@ |
*/ |
label Chrome { |
- M17 = 0.2 |
+ M17 = 0.2, |
+ M19 = 0.3 |
}; |
interface PPB_UDPSocket_Private { |
@@ -27,6 +28,14 @@ interface PPB_UDPSocket_Private { |
[in] PP_NetAddress_Private addr, |
[in] PP_CompletionCallback callback); |
+ /* Returns the address that the socket has bound to. If there has |
viettrungluu
2012/02/07 23:03:58
This comment doesn't actually make sense (especial
mtilburg1
2012/02/08 15:27:01
Done.
|
+ * not been a successful call to Bind, or the socket has been closed, |
+ * an error is returned. |
+ */ |
+ [version=0.3] |
+ PP_Bool GetBoundAddress([in] PP_Resource udp_socket, |
+ [out] PP_NetAddress_Private addr); |
+ |
/* 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 |