diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 09:27:40 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 09:27:40 -0600 |
commit | 1cbe9715eaa43af86c49e9eab171775bdec07972 (patch) | |
tree | 36d04619247358b197c6e899274f44ca6b60a951 /core/io/net_socket.h | |
parent | 04f33894f541953a077504be6719ddfd1be779f4 (diff) | |
parent | 0c620b29cdea566577e105b49a2273db7a315675 (diff) | |
download | redot-engine-1cbe9715eaa43af86c49e9eab171775bdec07972.tar.gz |
Merge pull request #98969 from Faless/net/split_sockets
[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 |