socks protocol implements by golang, support socks4, socks4a and socks5
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 179b61da8d add license file 10 years ago
cmd/server Initial commit 10 years ago
.gitignore Initial commit 10 years ago
LICENSE add license file 10 years ago
README.md Initial commit 10 years ago
socks.go Initial commit 10 years ago
socks4.go Initial commit 10 years ago
socks5.go Initial commit 10 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()
    }
}