cregit-Linux how code gets into the kernel

Release 4.17 include/uapi/linux/netfilter/xt_iprange.h

/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#ifndef _LINUX_NETFILTER_XT_IPRANGE_H

#define _LINUX_NETFILTER_XT_IPRANGE_H 1

#include <linux/types.h>
#include <linux/netfilter.h>


enum {
	
IPRANGE_SRC     = 1 << 0,	/* match source IP address */
	
IPRANGE_DST     = 1 << 1,	/* match destination IP address */
	
IPRANGE_SRC_INV = 1 << 4,	/* negate the condition */
	
IPRANGE_DST_INV = 1 << 5,	/* -"- */
};


struct xt_iprange_mtinfo {
	

union nf_inet_addr src_min, src_max;
	

union nf_inet_addr dst_min, dst_max;
	
__u8 flags;
};

#endif /* _LINUX_NETFILTER_XT_IPRANGE_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Jan Engelhardt6188.41%125.00%
Arnd Bergmann45.80%125.00%
Ben Hutchings34.35%125.00%
Greg Kroah-Hartman11.45%125.00%
Total69100.00%4100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.