2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-01-26 16:01:49 +01:00
<class name= "IP" inherits= "Object" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-06-22 01:04:47 +02:00
Internet protocol (IP) support functions such as DNS resolution.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2017-12-10 22:06:56 +01:00
IP contains support functions for the Internet Protocol (IP). TCP/IP support is in different classes (see [StreamPeerTCP] and [TCP_Server]). IP provides DNS hostname resolution support, both blocking and threaded.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "clear_cache" >
<return type= "void" >
</return>
<argument index= "0" name= "hostname" type= "String" default= """" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Removes all of a [code]hostname[/code]'s cached references. If no [code]hostname[/code] is given, all cached IP addresses are removed.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "erase_resolve_item" >
<return type= "void" >
</return>
<argument index= "0" name= "id" type= "int" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Removes a given item [code]id[/code] from the queue. This should be used to free a queue after it has completed to enable more queries to happen.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_local_addresses" qualifiers= "const" >
<return type= "Array" >
</return>
<description >
Returns all of the user's current IPv4 and IPv6 addresses as an array.
</description>
</method>
2019-05-07 10:17:00 +02:00
<method name= "get_local_interfaces" qualifiers= "const" >
<return type= "Array" >
</return>
<description >
Returns all network adapters as an array.
Each adapter is a dictionary of the form:
[codeblock]
{
"index": "1", # Interface index.
"name": "eth0", # Interface name.
"friendly": "Ethernet One", # A friendly name (might be empty).
"addresses": ["192.168.1.101"], # An array of IP addresses associated to this interface.
}
[/codeblock]
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_resolve_item_address" qualifiers= "const" >
<return type= "String" >
</return>
<argument index= "0" name= "id" type= "int" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Returns a queued hostname's IP address, given its queue [code]id[/code]. Returns an empty string on error or if resolution hasn't happened yet (see [method get_resolve_item_status]).
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_resolve_item_status" qualifiers= "const" >
<return type= "int" enum= "IP.ResolverStatus" >
</return>
<argument index= "0" name= "id" type= "int" >
</argument>
<description >
2019-12-06 23:09:20 +01:00
Returns a queued hostname's status as a [enum ResolverStatus] constant, given its queue [code]id[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "resolve_hostname" >
<return type= "String" >
</return>
<argument index= "0" name= "host" type= "String" >
</argument>
<argument index= "1" name= "ip_type" type= "int" enum= "IP.Type" default= "3" >
</argument>
<description >
2019-12-06 23:09:20 +01:00
Returns a given hostname's IPv4 or IPv6 address when resolved (blocking-type method). The address type returned depends on the [enum Type] constant given as [code]ip_type[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "resolve_hostname_queue_item" >
<return type= "int" >
</return>
<argument index= "0" name= "host" type= "String" >
</argument>
<argument index= "1" name= "ip_type" type= "int" enum= "IP.Type" default= "3" >
</argument>
<description >
2019-12-06 23:09:20 +01:00
Creates a queue item to resolve a hostname to an IPv4 or IPv6 address depending on the [enum Type] constant given as [code]ip_type[/code]. Returns the queue ID if successful, or [constant RESOLVER_INVALID_ID] on error.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "RESOLVER_STATUS_NONE" value= "0" enum= "ResolverStatus" >
2017-12-10 21:13:27 +01:00
DNS hostname resolver status: No status.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "RESOLVER_STATUS_WAITING" value= "1" enum= "ResolverStatus" >
2017-12-10 21:13:27 +01:00
DNS hostname resolver status: Waiting.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "RESOLVER_STATUS_DONE" value= "2" enum= "ResolverStatus" >
2017-12-10 21:13:27 +01:00
DNS hostname resolver status: Done.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "RESOLVER_STATUS_ERROR" value= "3" enum= "ResolverStatus" >
2017-12-10 21:13:27 +01:00
DNS hostname resolver status: Error.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "RESOLVER_MAX_QUERIES" value= "32" >
2019-06-27 12:34:26 +02:00
Maximum number of concurrent DNS resolver queries allowed, [constant RESOLVER_INVALID_ID] is returned if exceeded.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "RESOLVER_INVALID_ID" value= "-1" >
2019-06-27 12:34:26 +02:00
Invalid ID constant. Returned if [constant RESOLVER_MAX_QUERIES] is exceeded.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "TYPE_NONE" value= "0" enum= "Type" >
2017-12-10 21:13:27 +01:00
Address type: None.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "TYPE_IPV4" value= "1" enum= "Type" >
2017-12-10 21:13:27 +01:00
Address type: Internet protocol version 4 (IPv4).
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "TYPE_IPV6" value= "2" enum= "Type" >
2017-12-10 21:13:27 +01:00
Address type: Internet protocol version 6 (IPv6).
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "TYPE_ANY" value= "3" enum= "Type" >
2017-12-10 21:13:27 +01:00
Address type: Any.
2017-09-12 22:42:36 +02:00
</constant>
</constants>
</class>