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.

361 B

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()
    }
}