summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2016-12-01 06:34:05 +0100
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2016-12-09 18:24:59 +0100
commitc18c5013f837ea7d4de2f022d36f84e0abce6439 (patch)
treef21627a04256241523f6ca10d848cf89fd5fd12b /doc
parent4d90a4fcd5fcdca42df47062f94a1fa4e5635a94 (diff)
Migrate int.IP_TYPE_ constants to IP.TYPE_
Diffstat (limited to 'doc')
-rw-r--r--doc/base/classes.xml30
1 files changed, 8 insertions, 22 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index 07e2f719f9..f1809d9e25 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -16082,7 +16082,7 @@
</return>
<argument index="0" name="host" type="String">
</argument>
- <argument index="1" name="ip_type" type="int" default="int.IP_TYPE_ANY">
+ <argument index="1" name="ip_type" type="int" default="IP.TYPE_ANY">
</argument>
<description>
Resolve a given hostname, blocking. Resolved hostname is returned as an IPv4 or IPv6 depending on "ip_type".
@@ -16093,7 +16093,7 @@
</return>
<argument index="0" name="host" type="String">
</argument>
- <argument index="1" name="ip_type" type="int" default="int.IP_TYPE_ANY">
+ <argument index="1" name="ip_type" type="int" default="IP.TYPE_ANY">
</argument>
<description>
Create a queue item for resolving a given hostname to an IPv4 or IPv6 depending on "ip_type". The queue ID is returned, or RESOLVER_INVALID_ID on error.
@@ -25375,15 +25375,10 @@
</return>
<argument index="0" name="port" type="int">
</argument>
- <argument index="1" name="ip_type" type="int" default="int.IP_TYPE_ANY">
- </argument>
- <argument index="2" name="recv_buf_size" type="int" default="65536">
+ <argument index="1" name="recv_buf_size" type="int" default="65536">
</argument>
<description>
- Make this [PacketPeerUDP] listen on the "port" using protocol "ip_type" and a buffer size "recv_buf_size". Listens on all available adresses.
- IP_TYPE_IPV4 = IPv4 only
- IP_TYPE_IPV6 = IPv6 only
- IP_TYPE_ANY = Dual stack (supports both IPv6 and IPv4 connections).
+ Make this [PacketPeerUDP] listen on the "port" with a buffer size "recv_buf_size". Listens on all available addresses.
</description>
</method>
<method name="set_send_address">
@@ -25393,10 +25388,8 @@
</argument>
<argument index="1" name="port" type="int">
</argument>
- <argument index="2" name="ip_type" type="int" default="int.IP_TYPE_ANY">
- </argument>
<description>
- Set the destination address and port for sending packets and variables, a hostname will be resolved using "ip_type" (v4/v6/any) if valid.
+ Set the destination address and port for sending packets and variables, a hostname will be resolved using if valid.
</description>
</method>
<method name="wait">
@@ -39206,10 +39199,8 @@
</argument>
<argument index="1" name="port" type="int">
</argument>
- <argument index="2" name="ip_type" type="int" default="int.IP_TYPE_ANY">
- </argument>
<description>
- Connect to the specified host:port pair. A hostname will be resolved using "ip_type" (v4/v6/any) if valid. Returns [OK] on success or [FAILED] on failure.
+ Connect to the specified host:port pair. A hostname will be resolved if valid. Returns [OK] on success or [FAILED] on failure.
</description>
</method>
<method name="disconnect">
@@ -40532,15 +40523,10 @@
</return>
<argument index="0" name="port" type="int">
</argument>
- <argument index="1" name="ip_type" type="int" default="int.IP_TYPE_ANY">
- </argument>
- <argument index="2" name="accepted_hosts" type="StringArray" default="StringArray([])">
+ <argument index="1" name="accepted_hosts" type="StringArray" default="StringArray([])">
</argument>
<description>
- Listen on a port using protocol "ip_type", alternatively give a white-list of accepted hosts.
- IP_TYPE_IPV4 = IPv4 only
- IP_TYPE_IPV6 = IPv6 only
- IP_TYPE_ANY = Dual stack (supports both IPv6 and IPv4 connections).
+ Listen on a port using protocol, alternatively give a white-list of accepted hosts.
</description>
</method>
<method name="stop">