WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / bpf / progs / freplace_connect4.c
bloba0ae8423069979f5437bfb6d6cd0db81305d1f13
1 #include <linux/stddef.h>
2 #include <linux/ipv6.h>
3 #include <linux/bpf.h>
4 #include <linux/in.h>
5 #include <sys/socket.h>
6 #include <bpf/bpf_helpers.h>
7 #include <bpf/bpf_endian.h>
9 SEC("freplace/do_bind")
10 int new_do_bind(struct bpf_sock_addr *ctx)
12 struct sockaddr_in sa = {};
14 bpf_bind(ctx, (struct sockaddr *)&sa, sizeof(sa));
15 return 0;
18 char _license[] SEC("license") = "GPL";