*: introduce and use xvfork()
[oweals/busybox.git] / networking / udhcp / clientsocket.c
index 0be661d4fef2d6b9c857d32af62316315048f76e..0e13824b6535943c4ee2fe50dfc709b0214440bb 100644 (file)
  */
 
 #include <features.h>
+#include <asm/types.h>
 #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION)
 #include <netpacket/packet.h>
 #include <net/ethernet.h>
 #else
-#include <asm/types.h>
 #include <linux/if_packet.h>
 #include <linux/if_ether.h>
 #endif
@@ -76,7 +76,7 @@ int raw_socket(int ifindex)
                BPF_STMT(BPF_LD|BPF_W|BPF_IND, 0),
                BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, SERVER_AND_CLIENT_PORTS, 0, 1), /* L3, L4 */
                /* returns */
-               BPF_STMT(BPF_RET|BPF_K, (~(uint32_t)0) ),               /* L3: pass */
+               BPF_STMT(BPF_RET|BPF_K, 0x0fffffff ),                   /* L3: pass */
                BPF_STMT(BPF_RET|BPF_K, 0),                             /* L4: reject */
        };
        static const struct sock_fprog filter_prog = {