cregit-Linux how code gets into the kernel

Release 4.7 include/uapi/linux/netfilter/xt_bpf.h

#ifndef _XT_BPF_H

#define _XT_BPF_H

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


#define XT_BPF_MAX_NUM_INSTR	64

struct bpf_prog;


struct xt_bpf_info {
	
__u16 bpf_program_num_elem;
	
struct sock_filter bpf_program[XT_BPF_MAX_NUM_INSTR];

	/* only used in the kernel */
	
struct bpf_prog *filter __attribute__((aligned(8)));
};

#endif /*_XT_BPF_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
willem de bruijnwillem de bruijn4892.31%133.33%
alexei starovoitovalexei starovoitov23.85%133.33%
pablo neira ayusopablo neira ayuso23.85%133.33%
Total52100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}