#include #include SEC("xdp") int xdp_drop(struct xdp_md *ctx) { return XDP_PASS; // Drop all packets } char LICENSE[] SEC("license") = "GPL";