WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / bpf / progs / freplace_connect_v4_prog.c
blob544e5ac9046106f256b58f36e86b18e231aaf70b
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2020 Facebook
4 #include <linux/stddef.h>
5 #include <linux/ipv6.h>
6 #include <linux/bpf.h>
7 #include <linux/in.h>
8 #include <sys/socket.h>
9 #include <bpf/bpf_helpers.h>
10 #include <bpf/bpf_endian.h>
12 SEC("freplace/connect_v4_prog")
13 int new_connect_v4_prog(struct bpf_sock_addr *ctx)
15 // return value thats in invalid range
16 return 255;
19 char _license[] SEC("license") = "GPL";