cregit-Linux how code gets into the kernel

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

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

#define _XT_CONNBYTES_H

#include <linux/types.h>


enum xt_connbytes_what {
	
XT_CONNBYTES_PKTS,
	
XT_CONNBYTES_BYTES,
	
XT_CONNBYTES_AVGPKT,
};


enum xt_connbytes_direction {
	
XT_CONNBYTES_DIR_ORIGINAL,
	
XT_CONNBYTES_DIR_REPLY,
	
XT_CONNBYTES_DIR_BOTH,
};


struct xt_connbytes_info {
	
struct {
		
__aligned_u64 from;	/* count to be matched */
		
__aligned_u64 to;	/* count to be matched */
	
} count;
	
__u8 what;		/* ipt_connbytes_what */
	
__u8 direction;	/* ipt_connbytes_direction */
};
#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Harald Welte5086.21%125.00%
Arnd Bergmann58.62%125.00%
Mike Frysinger23.45%125.00%
Greg Kroah-Hartman11.72%125.00%
Total58100.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.