Sign in
android
/
platform
/
external
/
rust
/
crates
/
libbpf-rs
/
e5904f89b95de6c95914a270b295d57b73dee74c
/
.
/
tests
/
bin
/
src
/
xdp.bpf.c
blob: 3bc730830a2ea75573436495f37ca5e9fff9648f [
file
] [
log
] [
blame
]
#include
"vmlinux.h"
#include
<bpf/bpf_helpers.h>
SEC
(
"xdp"
)
int
xdp_filter
(
struct
xdp_md
*
ctx
)
{
return
XDP_PASS
;
}