diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-11-08 13:34:14 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-11-10 16:13:50 +0100 |
commit | 0c620b29cdea566577e105b49a2273db7a315675 (patch) | |
tree | f379ce4615e5908fea241049356ce128f59c97a0 /core/io/net_socket.h | |
parent | e65a23762b36b564eb94672031f37fdadba72333 (diff) | |
download | redot-engine-0c620b29cdea566577e105b49a2273db7a315675.tar.gz |
[Net] Split Unix/Windows NetSocket implementation
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 120ad5e85b..c12bab622a 100644 --- a/core/io/net_socket.h +++ b/core/io/net_socket.h @@ -76,6 +76,8 @@ public: virtual void set_reuse_address_enabled(bool p_enabled) = 0; virtual Error join_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) = 0; virtual Error leave_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) = 0; + + virtual ~NetSocket() {} }; #endif // NET_SOCKET_H |