├── LICENSE ├── README.md ├── VERSION ├── bpf ├── bpf_redir.c ├── bpf_sockops.c ├── bpf_sockops.h ├── load.sh └── unload.sh └── tools ├── nperf_latency.sh ├── nperf_thruput.sh └── nperf_trans.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 2 | -------------------------------------------------------------------------------- /bpf/bpf_redir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/bpf/bpf_redir.c -------------------------------------------------------------------------------- /bpf/bpf_sockops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/bpf/bpf_sockops.c -------------------------------------------------------------------------------- /bpf/bpf_sockops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/bpf/bpf_sockops.h -------------------------------------------------------------------------------- /bpf/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/bpf/load.sh -------------------------------------------------------------------------------- /bpf/unload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/bpf/unload.sh -------------------------------------------------------------------------------- /tools/nperf_latency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/tools/nperf_latency.sh -------------------------------------------------------------------------------- /tools/nperf_thruput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/tools/nperf_thruput.sh -------------------------------------------------------------------------------- /tools/nperf_trans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurChiao/socket-acceleration-with-ebpf/HEAD/tools/nperf_trans.sh --------------------------------------------------------------------------------