ebpf-sandbox/dropworld/dropworld.c
2024-12-24 16:46:35 +01:00

9 lines
182 B
C

#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
SEC("xdp")
int xdp_drop(struct xdp_md *ctx) {
return XDP_DROP; // Drop all packets
}
char LICENSE[] SEC("license") = "GPL";