1 2 3 4 5 6 7 8
#include "vmlinux.h" #include <bpf/bpf_helpers.h> SEC("xdp") int xdp_filter(struct xdp_md *ctx) { return XDP_PASS; }