2018-03-18 19:57:31 +00:00
|
|
|
#include <linux/bpf.h>
|
2019-06-11 00:56:51 +00:00
|
|
|
|
2020-01-20 13:06:45 +00:00
|
|
|
#include <bpf/bpf_helpers.h>
|
|
|
|
#include <bpf/bpf_endian.h>
|
2018-03-18 19:57:31 +00: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";
|