linux-zen-desktop/tools/testing/selftests/bpf/progs/sockmap_tcp_msg_prog.c

13 lines
196 B
C
Raw Normal View History

2023-08-30 17:31:07 +02:00
#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_endian.h>
SEC("sk_msg1")
int bpf_prog1(struct sk_msg_md *msg)
{
return SK_PASS;
}
char _license[] SEC("license") = "GPL";