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/net_socket.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/net_socket.h')
| -rw-r--r-- | core/io/net_socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/io/net_socket.h b/core/io/net_socket.h index 94e7ef6f75..3bc1369487 100644 --- a/core/io/net_socket.h +++ b/core/io/net_socket.h @@ -74,6 +74,8 @@ public: virtual void set_ipv6_only_enabled(bool p_enabled) = 0; virtual void set_tcp_no_delay_enabled(bool p_enabled) = 0; virtual void set_reuse_address_enabled(bool p_enabled) = 0; + virtual Error join_multicast_group(const IP_Address &p_multi_address, String p_if_name) = 0; + virtual Error leave_multicast_group(const IP_Address &p_multi_address, String p_if_name) = 0; }; #endif // NET_SOCKET_H |