whatcanGOwrong

This commit is contained in:
2024-09-19 21:38:24 -04:00
commit d0ae4d841d
17908 changed files with 4096831 additions and 0 deletions
@@ -0,0 +1,26 @@
package link
import (
"testing"
"github.com/cilium/ebpf"
"github.com/cilium/ebpf/internal/testutils"
)
const IfIndexLO = 1
func TestAttachXDP(t *testing.T) {
testutils.SkipOnOldKernel(t, "5.9", "BPF_LINK_TYPE_XDP")
prog := mustLoadProgram(t, ebpf.XDP, 0, "")
l, err := AttachXDP(XDPOptions{
Program: prog,
Interface: IfIndexLO,
})
if err != nil {
t.Fatal(err)
}
testLink(t, l, prog)
}