Back to home page

OSCL-LXR

 
 

    


0001 #include <linux/bpf.h>
0002 
0003 #include <bpf/bpf_helpers.h>
0004 #include <bpf/bpf_endian.h>
0005 
0006 SEC("sk_msg1")
0007 int bpf_prog1(struct sk_msg_md *msg)
0008 {
0009     return SK_PASS;
0010 }
0011 
0012 char _license[] SEC("license") = "GPL";