Blame bootstrap_ver/include/linux/netfilter/xt_iprange.h

Packit Service 1ec7f4
#ifndef _LINUX_NETFILTER_XT_IPRANGE_H
Packit Service 1ec7f4
#define _LINUX_NETFILTER_XT_IPRANGE_H 1
Packit Service 1ec7f4
Packit Service 1ec7f4
#include <linux/types.h>
Packit Service 1ec7f4
Packit Service 1ec7f4
enum {
Packit Service 1ec7f4
	IPRANGE_SRC     = 1 << 0,	/* match source IP address */
Packit Service 1ec7f4
	IPRANGE_DST     = 1 << 1,	/* match destination IP address */
Packit Service 1ec7f4
	IPRANGE_SRC_INV = 1 << 4,	/* negate the condition */
Packit Service 1ec7f4
	IPRANGE_DST_INV = 1 << 5,	/* -"- */
Packit Service 1ec7f4
};
Packit Service 1ec7f4
Packit Service 1ec7f4
struct xt_iprange_mtinfo {
Packit Service 1ec7f4
	union nf_inet_addr src_min, src_max;
Packit Service 1ec7f4
	union nf_inet_addr dst_min, dst_max;
Packit Service 1ec7f4
	__u8 flags;
Packit Service 1ec7f4
};
Packit Service 1ec7f4
Packit Service 1ec7f4
#endif /* _LINUX_NETFILTER_XT_IPRANGE_H */