4
0

main.bpf.c 163 B

12345678910
  1. #include <linux/bpf.h>
  2. #include <bpf/bpf_helpers.h>
  3. SEC("xdp")
  4. int xdp_pass(struct xdp_md *ctx)
  5. {
  6. return XDP_PASS;
  7. }
  8. char _license[] SEC("license") = "GPL";