Fix check for raw socket support.
[oweals/tinc.git] / src / raw_socket_device.c
index b9671e3e512b891522b9a8d5e950e4e109861e8e..1dd726f888de2d172efb9b7a8eeea2f7efaa9f29 100644 (file)
 #include "route.h"
 #include "xalloc.h"
 
+#if defined(PF_PACKET) && defined(ETH_P_ALL) && defined(AF_PACKET)
 static char *device_info;
 
 static uint64_t device_total_in = 0;
 static uint64_t device_total_out = 0;
 
-#if defined(PF_SOCKET) && defined(ETH_P_ALL) && defined(AF_PACKET)
 static bool setup_device(void) {
        struct ifreq ifr;
        struct sockaddr_ll sa;