Browse Source

netinet6/in6_var.h not available in iOS

Grant Limberg 2 years ago
parent
commit
9568a4f2b4
1 changed files with 3 additions and 1 deletions
  1. 3 1
      osdep/Binder.hpp

+ 3 - 1
osdep/Binder.hpp

@@ -42,7 +42,9 @@
 
 
 #if (defined(__unix__) || defined(__APPLE__)) && !defined(__LINUX__) && !defined(ZT_SDK)
 #if (defined(__unix__) || defined(__APPLE__)) && !defined(__LINUX__) && !defined(ZT_SDK)
 #include <net/if.h>
 #include <net/if.h>
+#if ! defined(TARGET_OS_IOS)
 #include <netinet6/in6_var.h>
 #include <netinet6/in6_var.h>
+#endif
 #include <sys/ioctl.h>
 #include <sys/ioctl.h>
 #endif
 #endif
 
 
@@ -324,7 +326,7 @@ class Binder {
 					while (ifa) {
 					while (ifa) {
 						if ((ifa->ifa_name) && (ifa->ifa_addr)) {
 						if ((ifa->ifa_name) && (ifa->ifa_addr)) {
 							InetAddress ip = *(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
 							// Check if the address is an IPv6 Temporary Address, macOS/BSD version
 							if (ifa->ifa_addr->sa_family == AF_INET6) {
 							if (ifa->ifa_addr->sa_family == AF_INET6) {
 								struct sockaddr_in6* sa6 = (struct sockaddr_in6*)ifa->ifa_addr;
 								struct sockaddr_in6* sa6 = (struct sockaddr_in6*)ifa->ifa_addr;