├── .gitignore ├── .goreleaser.yml ├── .prettierrc.json ├── LICENSE ├── README.md ├── cmd └── sclient │ └── main.go ├── doc.go ├── go.mod ├── sclient.go ├── staticcheck.conf └── tests ├── get.bin ├── localhost.sh ├── pipe.sh └── stdin.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/README.md -------------------------------------------------------------------------------- /cmd/sclient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/cmd/sclient/main.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/doc.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/go.mod -------------------------------------------------------------------------------- /sclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/sclient.go -------------------------------------------------------------------------------- /staticcheck.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/staticcheck.conf -------------------------------------------------------------------------------- /tests/get.bin: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.1 2 | Host: telebit.cloud 3 | Connection: close 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/localhost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/tests/localhost.sh -------------------------------------------------------------------------------- /tests/pipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/tests/pipe.sh -------------------------------------------------------------------------------- /tests/stdin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therootcompany/sclient/HEAD/tests/stdin.sh --------------------------------------------------------------------------------