diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-11-25 15:01:44 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-12-14 18:10:36 +0100 |
commit | 04c917899f1bfba7fbae8f20b602f726f43102d6 (patch) | |
tree | 13c8ae61d68feed41e6f04522b0399120d3bf3c8 /doc | |
parent | fafda80a4b7c3c588ae0e0937f2d7982e39b2d74 (diff) |
Add Android NetSocket implementation.
Automatically acquire and release multicast lock when needed.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/PacketPeerUDP.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/classes/PacketPeerUDP.xml b/doc/classes/PacketPeerUDP.xml index d1b159ec54..3dc83ce8b4 100644 --- a/doc/classes/PacketPeerUDP.xml +++ b/doc/classes/PacketPeerUDP.xml @@ -47,6 +47,7 @@ <description> Joins the multicast group specified by [code]multicast_address[/code] using the interface identified by [code]interface_name[/code]. You can join the same multicast group with multiple interfaces. Use [method IP.get_local_interfaces] to know which are available. + Note: Some Android devices might require the [code]CHANGE_WIFI_MULTICAST_STATE[/code] permission for multicast to work. </description> </method> <method name="leave_multicast_group"> @@ -83,6 +84,7 @@ </argument> <description> Enable or disable sending of broadcast packets (e.g. [code]set_dest_address("255.255.255.255", 4343)[/code]. This option is disabled by default. + Note: Some Android devices might require the [code]CHANGE_WIFI_MULTICAST_STATE[/code] permission and this option to be enabled to receive broadcast packets too. </description> </method> <method name="set_dest_address"> |