From 243aebf54e55f514a6fa57deb22a86a094045ebc Mon Sep 17 00:00:00 2001 From: Kilemonn Date: Mon, 8 Jul 2024 10:51:51 +0900 Subject: [PATCH] Add "sys/time.h" to Socket.h to fix build issues on alpine linux. --- src/socket/Socket.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/socket/Socket.h b/src/socket/Socket.h index 6b63a34..d38e17d 100644 --- a/src/socket/Socket.h +++ b/src/socket/Socket.h @@ -15,6 +15,7 @@ #elif __linux__ #include +#include // Typedef to match the windows typedef since they are different underlying types typedef int SOCKET;