diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-06-21 10:21:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-21 10:21:01 +0200 |
| commit | 1e833cadbcf1403eec85fa85b290328bc1bf5179 (patch) | |
| tree | 8c98449750f26d7b411ef2b46164826435bdbe91 /core/io/ip.h | |
| parent | 5c66771e3ebccdfec55bb94ea521d2f24cb6200a (diff) | |
| parent | e5e3f866484709f47c97151e99a302206df1d894 (diff) | |
Merge pull request #29935 from Faless/net/get_if_multicast_pr
Multicast, more network interfaces info
Diffstat (limited to 'core/io/ip.h')
| -rw-r--r-- | core/io/ip.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/core/io/ip.h b/core/io/ip.h index ead71ebb54..59b18ef986 100644 --- a/core/io/ip.h +++ b/core/io/ip.h @@ -73,16 +73,25 @@ protected: virtual IP_Address _resolve_hostname(const String &p_hostname, Type p_type = TYPE_ANY) = 0; Array _get_local_addresses() const; + Array _get_local_interfaces() const; static IP *(*_create)(); public: + struct Interface_Info { + String name; + String name_friendly; + String index; + List<IP_Address> ip_addresses; + }; + IP_Address resolve_hostname(const String &p_hostname, Type p_type = TYPE_ANY); // async resolver hostname ResolverID resolve_hostname_queue_item(const String &p_hostname, Type p_type = TYPE_ANY); ResolverStatus get_resolve_item_status(ResolverID p_id) const; IP_Address get_resolve_item_address(ResolverID p_id) const; - virtual void get_local_addresses(List<IP_Address> *r_addresses) const = 0; + virtual void get_local_addresses(List<IP_Address> *r_addresses) const; + virtual void get_local_interfaces(Map<String, Interface_Info> *r_interfaces) const = 0; void erase_resolve_item(ResolverID p_id); void clear_cache(const String &p_hostname = ""); |