From 9568a4f2b4bce03db072fc2d0cc92f431b2587ac Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Thu, 10 Nov 2022 11:35:34 -0800 Subject: [PATCH] netinet6/in6_var.h not available in iOS --- osdep/Binder.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/osdep/Binder.hpp b/osdep/Binder.hpp index 3236d30b7..4e08f4539 100644 --- a/osdep/Binder.hpp +++ b/osdep/Binder.hpp @@ -42,7 +42,9 @@ #if (defined(__unix__) || defined(__APPLE__)) && !defined(__LINUX__) && !defined(ZT_SDK) #include +#if ! defined(TARGET_OS_IOS) #include +#endif #include #endif @@ -324,7 +326,7 @@ class Binder { while (ifa) { if ((ifa->ifa_name) && (ifa->ifa_addr)) { InetAddress ip = *(ifa->ifa_addr); -#if (defined(__unix__) || defined(__APPLE__)) && !defined(__LINUX__) && !defined(ZT_SDK) +#if (defined(__unix__) || defined(__APPLE__)) && !defined(__LINUX__) && !defined(ZT_SDK) && !defined(TARGET_OS_IOS) // Check if the address is an IPv6 Temporary Address, macOS/BSD version if (ifa->ifa_addr->sa_family == AF_INET6) { struct sockaddr_in6* sa6 = (struct sockaddr_in6*)ifa->ifa_addr;