├── .ccls ├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── attach.sh ├── config.h ├── detach.sh ├── warp-ebpf.c └── warp-register.py /.ccls: -------------------------------------------------------------------------------- 1 | clang 2 | -target bpf 3 | -I/usr/include/x86_64-linux-gnu 4 | -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdqi/warp-ebpf/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .idea 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdqi/warp-ebpf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdqi/warp-ebpf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdqi/warp-ebpf/HEAD/README.md -------------------------------------------------------------------------------- /attach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdqi/warp-ebpf/HEAD/attach.sh -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdqi/warp-ebpf/HEAD/config.h -------------------------------------------------------------------------------- /detach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdqi/warp-ebpf/HEAD/detach.sh -------------------------------------------------------------------------------- /warp-ebpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdqi/warp-ebpf/HEAD/warp-ebpf.c -------------------------------------------------------------------------------- /warp-register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdqi/warp-ebpf/HEAD/warp-register.py --------------------------------------------------------------------------------