You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fangdingjun f0f0d1f88d | 9 years ago | |
---|---|---|
cmd/server | 9 years ago | |
.gitignore | 9 years ago | |
LICENSE | 9 years ago | |
README.md | 9 years ago | |
socks.go | 9 years ago | |
socks4.go | 9 years ago | |
socks5.go | 9 years ago |
README.md
socks-go
A socks server implement by golang, support socks4/4a, socks5.
usage
Usage example:
import "github.com/fangdingjun/socks"
fucn main(){
l, _ := net.Listen("tcp", ":1080")
for {
conn, _ := l.Accept()
s := socks.SocksConn{conn}
go s.Serve()
}
}