netinet6/in6_var.h not available in iOS

This commit is contained in:
Grant Limberg 2022-11-10 11:35:34 -08:00
parent b41e0910b0
commit 9568a4f2b4

View File

@ -42,7 +42,9 @@
#if (defined(__unix__) || defined(__APPLE__)) && !defined(__LINUX__) && !defined(ZT_SDK)
#include <net/if.h>
#if ! defined(TARGET_OS_IOS)
#include <netinet6/in6_var.h>
#endif
#include <sys/ioctl.h>
#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;