Go to the documentation of this file.
15 #ifndef __LINUX_BRIDGE_EBT_IP_H
16 #define __LINUX_BRIDGE_EBT_IP_H
18 #include <linux/types.h>
20 #define EBT_IP_SOURCE 0x01
21 #define EBT_IP_DEST 0x02
22 #define EBT_IP_TOS 0x04
23 #define EBT_IP_PROTO 0x08
24 #define EBT_IP_SPORT 0x10
25 #define EBT_IP_DPORT 0x20
26 #define EBT_IP_MASK (EBT_IP_SOURCE | EBT_IP_DEST | EBT_IP_TOS | EBT_IP_PROTO |\
27 EBT_IP_SPORT | EBT_IP_DPORT )
28 #define EBT_IP_MATCH "ip"