X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/faa52bdcc0221de2d8fae950e409a8ac5e05bfcd..53ecbcb3ad919bcb875391dbeea51ee58560e010:/components/ip.c

diff --git a/components/ip.c b/components/ip.c
index 686344b..422b448 100644
--- a/components/ip.c
+++ b/components/ip.c
@@ -1,5 +1,9 @@
 /* See LICENSE file for copyright and license details. */
-#if defined(__linux__)
+#if defined(__OpenBSD__)
+#include <sys/types.h>
+#include <sys/socket.h>
+#endif
+
 #include <errno.h>
 #include <ifaddrs.h>
 #include <netdb.h>
@@ -69,4 +73,3 @@ ipv6(const char *iface)
 
 	return NULL;
 }
-#endif