Merge tag 'dt-for-linus-2' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[deliverable/linux.git] / include / linux / netfilter / xt_rpfilter.h
1 #ifndef _XT_RPATH_H
2 #define _XT_RPATH_H
3
4 #include <linux/types.h>
5
6 enum {
7 XT_RPFILTER_LOOSE = 1 << 0,
8 XT_RPFILTER_VALID_MARK = 1 << 1,
9 XT_RPFILTER_ACCEPT_LOCAL = 1 << 2,
10 XT_RPFILTER_INVERT = 1 << 3,
11 #ifdef __KERNEL__
12 XT_RPFILTER_OPTION_MASK = XT_RPFILTER_LOOSE |
13 XT_RPFILTER_VALID_MARK |
14 XT_RPFILTER_ACCEPT_LOCAL |
15 XT_RPFILTER_INVERT,
16 #endif
17 };
18
19 struct xt_rpfilter_info {
20 __u8 flags;
21 };
22
23 #endif
This page took 0.043398 seconds and 5 git commands to generate.