1
0
Fork 0

Fill out the README

logger
Armon Dadgar 2014-01-23 14:22:07 -08:00
parent 197b77d49f
commit 3ef4eaaa59
1 changed files with 22 additions and 1 deletions

View File

@ -1,4 +1,25 @@
go-socks5
=========
SOCKS5 server in Golang
Provides the `socks5` package that implements a [SOCKS5 server](http://en.wikipedia.org/wiki/SOCKS).
SOCKS (Secure Sockets) is used to route traffic between a client and server through
an intermediate proxy layer. This can be used to bypass firewalls or NATs.
Feature
=======
The package has the following features:
* "No Auth" mode
* User/Password authentication
* Support for the CONNECT command
* Rules to do granular filtering of commands
* Custom DNS resolution
* Unit tests
TODO
====
The package still needs the following:
* Support for the BIND command
* Support for the ASSOCIATE command