summaryrefslogtreecommitdiff
path: root/thirdparty/enet/enet/godot.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/enet/enet/godot.h')
-rw-r--r--thirdparty/enet/enet/godot.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/thirdparty/enet/enet/godot.h b/thirdparty/enet/enet/godot.h
index 4f25ea9c7b..296b92763d 100644
--- a/thirdparty/enet/enet/godot.h
+++ b/thirdparty/enet/enet/godot.h
@@ -69,4 +69,12 @@ typedef struct
typedef void ENetSocketSet;
+typedef struct _ENetAddress
+{
+ uint8_t host[16];
+ uint16_t port;
+ uint8_t wildcard;
+} ENetAddress;
+#define enet_host_equal(host_a, host_b) (memcmp(&host_a, &host_b,16) == 0)
+
#endif /* __ENET_GODOT_H__ */