main.bpf.c 196 B

123456789
  1. // clang-format off
  2. #include <vmlinux.h>
  3. #include <bpf/bpf_helpers.h>
  4. // clang-format on
  5. SEC("xdp")
  6. int xdp_pass(struct xdp_md *ctx) { return XDP_PASS; }
  7. char _license[] SEC("license") = "GPL";