summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--src/openvpn/syshead.h4
-rw-r--r--src/openvpn/tun.c4
3 files changed, 3 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 9132468..5dccfbb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -461,7 +461,7 @@ SOCKET_INCLUDES="
"
AC_CHECK_HEADERS(
- [net/if.h netinet/ip.h netinet/if_ether.h resolv.h sys/un.h net/if_utun.h sys/kern_control.h],
+ [net/if.h netinet/ip.h resolv.h sys/un.h net/if_utun.h sys/kern_control.h],
,
,
[[${SOCKET_INCLUDES}]]
diff --git a/src/openvpn/syshead.h b/src/openvpn/syshead.h
index b898bf2..cf29131 100644
--- a/src/openvpn/syshead.h
+++ b/src/openvpn/syshead.h
@@ -214,10 +214,6 @@
#if defined(TARGET_LINUX) || defined (TARGET_ANDROID)
-#if defined(HAVE_NETINET_IF_ETHER_H)
-#include <netinet/if_ether.h>
-#endif
-
#ifdef HAVE_LINUX_IF_TUN_H
#include <linux/if_tun.h>
#endif
diff --git a/src/openvpn/tun.c b/src/openvpn/tun.c
index 11a6d71..ce3ed85 100644
--- a/src/openvpn/tun.c
+++ b/src/openvpn/tun.c
@@ -1856,9 +1856,9 @@ write_tun (struct tuntap* tt, uint8_t *buf, int len)
pi.flags = 0;
if(iph->version == 6)
- pi.proto = htons(ETH_P_IPV6);
+ pi.proto = htons(OPENVPN_ETH_P_IPV6);
else
- pi.proto = htons(ETH_P_IP);
+ pi.proto = htons(OPENVPN_ETH_P_IPV4);
vect[0].iov_len = sizeof(pi);
vect[0].iov_base = &pi;