├── .github └── workflows │ ├── github-release │ └── go.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── go.mod └── main.go /.github/workflows/github-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winguse/udp-xor/HEAD/.github/workflows/github-release -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winguse/udp-xor/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winguse/udp-xor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winguse/udp-xor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winguse/udp-xor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winguse/udp-xor/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/winguse/udp-xor 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winguse/udp-xor/HEAD/main.go --------------------------------------------------------------------------------