summaryrefslogtreecommitdiffstats
path: root/drivers/unix/ip_unix.h
diff options
context:
space:
mode:
authorChuck <chuck+github@borboggle.com>2021-05-24 20:14:51 +0700
committerChuck <chuck+github@borboggle.com>2021-06-01 11:24:34 +0700
commitdd8fa11ac182cc5b53746c9148067968d45c5588 (patch)
tree91354ad635aae874047c7686d44b3008d2858a4c /drivers/unix/ip_unix.h
parent635d0c9b449e34267b52a237f7ce21838d90b6ce (diff)
downloadredot-engine-dd8fa11ac182cc5b53746c9148067968d45c5588.tar.gz
Support multiple address resolution in DNS requests
Add two new functions to the IP class that returns all addresses/aliases associated with a given address. This is a cherry-pick merge from 010a3433df43a94fee95474360ffa6662c7441b9 which was merged in 2.1, and has been updated to build with the latest code. This merge adds two new methods IP.resolve_hostname_addresses and IP.get_resolve_item_addresses that returns a List of all addresses returned from the DNS request.
Diffstat (limited to 'drivers/unix/ip_unix.h')
-rw-r--r--drivers/unix/ip_unix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/ip_unix.h b/drivers/unix/ip_unix.h
index e6479be6e5..0d64648b39 100644
--- a/drivers/unix/ip_unix.h
+++ b/drivers/unix/ip_unix.h
@@ -38,7 +38,7 @@
class IPUnix : public IP {
GDCLASS(IPUnix, IP);
- virtual IPAddress _resolve_hostname(const String &p_hostname, IP::Type p_type) override;
+ virtual void _resolve_hostname(List<IPAddress> &r_addresses, const String &p_hostname, Type p_type = TYPE_ANY) const override;
static IP *_create_unix();