├── go.mod ├── main.go └── tcpc ├── tcpc.go └── tcpc_test.go /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/anthdm/tcpc 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/tcpc/HEAD/main.go -------------------------------------------------------------------------------- /tcpc/tcpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/tcpc/HEAD/tcpc/tcpc.go -------------------------------------------------------------------------------- /tcpc/tcpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/tcpc/HEAD/tcpc/tcpc_test.go --------------------------------------------------------------------------------