├── .gitignore ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── main.go ├── simple.bpf.c └── simple.h /.gitignore: -------------------------------------------------------------------------------- 1 | simple.bpf.o 2 | libbpfgo-prog 3 | vmlinux.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/libbpfgo-example/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/libbpfgo-example/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/libbpfgo-example/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/libbpfgo-example/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/libbpfgo-example/HEAD/main.go -------------------------------------------------------------------------------- /simple.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/libbpfgo-example/HEAD/simple.bpf.c -------------------------------------------------------------------------------- /simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/libbpfgo-example/HEAD/simple.h --------------------------------------------------------------------------------