Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ebt_arp.h
Go to the documentation of this file.
1 #ifndef __LINUX_BRIDGE_EBT_ARP_H
2 #define __LINUX_BRIDGE_EBT_ARP_H
3 
4 #include <linux/types.h>
5 
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 | \
16  EBT_ARP_GRAT)
17 #define EBT_ARP_MATCH "arp"
18 
20 {
28  unsigned char smaddr[ETH_ALEN];
29  unsigned char smmsk[ETH_ALEN];
30  unsigned char dmaddr[ETH_ALEN];
31  unsigned char dmmsk[ETH_ALEN];
34 };
35 
36 #endif