An open API service indexing awesome lists of open source software.

https://github.com/linkdata/socks5test

SOCKS5 client and server test suite
https://github.com/linkdata/socks5test

golang socks5 testing

Last synced: 5 months ago
JSON representation

SOCKS5 client and server test suite

Awesome Lists containing this project

README

          

[![build](https://github.com/linkdata/socks5test/actions/workflows/build.yml/badge.svg)](https://github.com/linkdata/socks5test/actions/workflows/build.yml)
[![coverage](https://github.com/linkdata/socks5test/blob/coverage/main/badge.svg)](https://htmlpreview.github.io/?https://github.com/linkdata/socks5test/blob/coverage/main/report.html)
[![goreport](https://goreportcard.com/badge/github.com/linkdata/socks5test)](https://goreportcard.com/report/github.com/linkdata/socks5test)
[![Docs](https://godoc.org/github.com/linkdata/socks5test?status.svg)](https://godoc.org/github.com/linkdata/socks5test)

# socks5test

SOCKS5 server and client test suite, primarily used to test https://github.com/linkdata/socks5.

Tests CONNECT, BIND and ASSOCIATE.

The `examples` directory runs the tests for other packages:

* https://github.com/armon/go-socks5 (PASS, server only, lacks ASSOCIATE)
* https://github.com/things-go/go-socks5 (PASS, server only, lacks BIND)
* https://golang.org/x/net (PASS, client only, lacks BIND and ASSOCIATE)
* https://github.com/wzshiming/socks5 (v0.6.0: PASS; v0.5.1: FAIL some tests, limited ASSOCIATE support, sometimes fails race checker)
* https://github.com/txthinking/socks5 (FAIL some tests, broken ASSOCIATE support)