├── .github └── workflows │ ├── go.yml │ └── sourcegraph-lsif-indexing.yml ├── .gitignore ├── LICENSE ├── README.md ├── ebpf ├── Makefile ├── common.h └── drop.c ├── go.mod ├── go.sum └── main.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/sourcegraph-lsif-indexing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/.github/workflows/sourcegraph-lsif-indexing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tc-skeleton 2 | ebpf/drop 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /ebpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/ebpf/Makefile -------------------------------------------------------------------------------- /ebpf/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/ebpf/common.h -------------------------------------------------------------------------------- /ebpf/drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/ebpf/drop.c -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianl/tc-skeleton/HEAD/main.go --------------------------------------------------------------------------------