• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iptables-1.4.x/include/linux/netfilter/
1#ifndef _LINUX_NETFILTER_XT_IPRANGE_H
2#define _LINUX_NETFILTER_XT_IPRANGE_H 1
3
4#include <linux/types.h>
5
6enum {
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,	/* -"- */
11};
12
13struct xt_iprange_mtinfo {
14	union nf_inet_addr src_min, src_max;
15	union nf_inet_addr dst_min, dst_max;
16	__u8 flags;
17};
18
19#endif /* _LINUX_NETFILTER_XT_IPRANGE_H */
20