Go to the documentation of this file.
12 #ifndef __LINUX_BRIDGE_EBT_IP6_H
13 #define __LINUX_BRIDGE_EBT_IP6_H
15 #include <linux/types.h>
17 #define EBT_IP6_SOURCE 0x01
18 #define EBT_IP6_DEST 0x02
19 #define EBT_IP6_TCLASS 0x04
20 #define EBT_IP6_PROTO 0x08
21 #define EBT_IP6_SPORT 0x10
22 #define EBT_IP6_DPORT 0x20
23 #define EBT_IP6_ICMP6 0x40
25 #define EBT_IP6_MASK (EBT_IP6_SOURCE | EBT_IP6_DEST | EBT_IP6_TCLASS |\
26 EBT_IP6_PROTO | EBT_IP6_SPORT | EBT_IP6_DPORT | \
28 #define EBT_IP6_MATCH "ip6"