Attach attaches eBPF(Kprobe) program to a probe point. There are 2 possible ways to do that: 1. Pass attach point as parameter, e.g. xdpProgram.Attach("SyS_execve") 2. Using the ebpf program section identifier. SEC("kprobe/SyS_execve")
(data interface{})