Go to the documentation of this file. 1 #ifndef __LINUX_BRIDGE_EBT_ARP_H
2 #define __LINUX_BRIDGE_EBT_ARP_H
4 #include <linux/types.h>
6 #define EBT_ARP_OPCODE 0x01
7 #define EBT_ARP_HTYPE 0x02
8 #define EBT_ARP_PTYPE 0x04
9 #define EBT_ARP_SRC_IP 0x08
10 #define EBT_ARP_DST_IP 0x10
11 #define EBT_ARP_SRC_MAC 0x20
12 #define EBT_ARP_DST_MAC 0x40
13 #define EBT_ARP_GRAT 0x80
14 #define EBT_ARP_MASK (EBT_ARP_OPCODE | EBT_ARP_HTYPE | EBT_ARP_PTYPE | \
15 EBT_ARP_SRC_IP | EBT_ARP_DST_IP | EBT_ARP_SRC_MAC | EBT_ARP_DST_MAC | \
17 #define EBT_ARP_MATCH "arp"