#include #include SEC("xdp") int print_xdp_data(struct xdp_md *ctx) { // 'data' is a pointer to the start of packet data long data = (long)ctx->data; bpf_printk("ctx->data = %lld\n", data); return XDP_PASS; } char LICENSE[] SEC("license") = "GPL";