Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 
0003 #include <linux/bpf.h>
0004 #include <bpf/bpf_helpers.h>
0005 
0006 SEC("xdp")
0007 int xdp_tx(struct xdp_md *xdp)
0008 {
0009     return XDP_TX;
0010 }
0011 
0012 char _license[] SEC("license") = "GPL";