netfilter: xtables: add missing header inclusions for headers_check
[linux-2.6-block.git] / include / linux / netfilter_bridge / ebt_mark_m.h
CommitLineData
1da177e4
LT
1#ifndef __LINUX_BRIDGE_EBT_MARK_M_H
2#define __LINUX_BRIDGE_EBT_MARK_M_H
3
06988b06
JE
4#include <linux/types.h>
5
1da177e4
LT
6#define EBT_MARK_AND 0x01
7#define EBT_MARK_OR 0x02
8#define EBT_MARK_MASK (EBT_MARK_AND | EBT_MARK_OR)
d94d9fee 9struct ebt_mark_m_info {
1da177e4 10 unsigned long mark, mask;
0260c1dc
JE
11 __u8 invert;
12 __u8 bitmask;
1da177e4
LT
13};
14#define EBT_MARK_MATCH "mark_m"
15
16#endif