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;
}