GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / arm-brcm-linux-uclibcgnueabi / sysroot / usr / include / linux / netfilter / xt_iprange.h
blobc1f21a779a45c48797f469b6f6ac3aa6a3078c78
1 #ifndef _LINUX_NETFILTER_XT_IPRANGE_H
2 #define _LINUX_NETFILTER_XT_IPRANGE_H 1
4 #include <linux/types.h>
6 enum {
7 IPRANGE_SRC = 1 << 0, /* match source IP address */
8 IPRANGE_DST = 1 << 1, /* match destination IP address */
9 IPRANGE_SRC_INV = 1 << 4, /* negate the condition */
10 IPRANGE_DST_INV = 1 << 5, /* -"- */
13 struct xt_iprange_mtinfo {
14 union nf_inet_addr src_min, src_max;
15 union nf_inet_addr dst_min, dst_max;
16 __u8 flags;
19 #endif /* _LINUX_NETFILTER_XT_IPRANGE_H */