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