[NET]: netlink support for moving devices between network namespaces.
[linux-2.6/openmoko-kernel/knife-kernel.git] / include / linux / netfilter_bridge / ebt_mark_m.h
blob301524ff1065856ffb21719eb1922e41b14027eb
1 #ifndef __LINUX_BRIDGE_EBT_MARK_M_H
2 #define __LINUX_BRIDGE_EBT_MARK_M_H
4 #define EBT_MARK_AND 0x01
5 #define EBT_MARK_OR 0x02
6 #define EBT_MARK_MASK (EBT_MARK_AND | EBT_MARK_OR)
7 struct ebt_mark_m_info
9 unsigned long mark, mask;
10 uint8_t invert;
11 uint8_t bitmask;
13 #define EBT_MARK_MATCH "mark_m"
15 #endif