summaryrefslogtreecommitdiffstats
path: root/socket.h
diff options
context:
space:
mode:
authorJuanJo Ciarlante <jjo+ml@google.com>2011-09-19 16:07:14 +0200
committerDavid Sommerseth <davids@redhat.com>2011-09-21 15:19:41 +0200
commitc02a84051297d97ba5955b93cdf479393b1dc1f8 (patch)
tree31a9c12dc12af2af1b1623ab060231571e09c2aa /socket.h
parent79a5aa44ca30b0a9c5ba067f099bc1b97d8454e0 (diff)
downloadopenvpn-c02a84051297d97ba5955b93cdf479393b1dc1f8.tar.gz
openvpn-c02a84051297d97ba5955b93cdf479393b1dc1f8.tar.xz
openvpn-c02a84051297d97ba5955b93cdf479393b1dc1f8.zip
fix ipv6 compilation under macosx >= 1070 - v3
- use __APPLE_USE_RFC_3542 for macosx build environment >= 1070 - define SOL_IP from IPPROTO_IP if it's missing In Linux man 7 ip says: "Using SOL_IP socket options level isn't portable, BSD-based stacks use IPPROTO_IP level." Signed-off-by: JuanJo Ciarlante <jjo+ml@google.com> Tested-by: Eric F Crist <ecrist@secure-computing.net> Acked-by: David Sommerseth <davids@redhat.com> Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'socket.h')
-rw-r--r--socket.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/socket.h b/socket.h
index a9a29c5..4a4f75d 100644
--- a/socket.h
+++ b/socket.h
@@ -86,8 +86,7 @@ struct link_socket_actual
union {
#ifdef HAVE_IN_PKTINFO
struct in_pktinfo in4;
-#endif
-#ifdef IP_RECVDSTADDR
+#elif defined(IP_RECVDSTADDR)
struct in_addr in4;
#endif
struct in6_pktinfo in6;
@@ -589,8 +588,7 @@ addr_defined_ipi (const struct link_socket_actual *lsa)
switch (lsa->dest.addr.sa.sa_family) {
#ifdef HAVE_IN_PKTINFO
case AF_INET: return lsa->pi.in4.ipi_spec_dst.s_addr != 0;
-#endif
-#ifdef IP_RECVDSTADDR
+#elif defined(IP_RECVDSTADDR)
case AF_INET: return lsa->pi.in4.s_addr != 0;
#endif
case AF_INET6: return !IN6_IS_ADDR_UNSPECIFIED(&lsa->pi.in6.ipi6_addr);