2018-03-18 12:57:31 -07:00
|
|
|
#include <linux/bpf.h>
|
2019-06-10 17:56:51 -07:00
|
|
|
|
2020-01-20 14:06:45 +01:00
|
|
|
#include <bpf/bpf_helpers.h>
|
|
|
|
|
#include <bpf/bpf_endian.h>
|
2018-03-18 12:57:31 -07:00
|
|
|
|
|
|
|
|
int _version SEC("version") = 1;
|
|
|
|
|
|
|
|
|
|
SEC("sk_msg1")
|
|
|
|
|
int bpf_prog1(struct sk_msg_md *msg)
|
|
|
|
|
{
|
|
|
|
|
return SK_PASS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char _license[] SEC("license") = "GPL";
|