├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── LICENSE ├── README.md ├── README_ZH.md ├── bind.go ├── client.go ├── client_side.go ├── connect.go ├── example_test.go ├── go.mod ├── go.sum ├── init.go ├── server.go ├── server_side.go ├── socks5.go ├── udp.go ├── util.go └── util_test.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/README_ZH.md -------------------------------------------------------------------------------- /bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/bind.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/client.go -------------------------------------------------------------------------------- /client_side.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/client_side.go -------------------------------------------------------------------------------- /connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/connect.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/go.sum -------------------------------------------------------------------------------- /init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/init.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/server.go -------------------------------------------------------------------------------- /server_side.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/server_side.go -------------------------------------------------------------------------------- /socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/socks5.go -------------------------------------------------------------------------------- /udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/udp.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/util.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txthinking/socks5/HEAD/util_test.go --------------------------------------------------------------------------------