Shawwwn
Shawwwn
https://github.com/xtaci/kcp-go/blob/88fc14ae6dc5ff6eed704407e5f72ff0d28a7013/sess.go#L913-L918 Here `var timeout` is fixed, thus subsequent calls to `SetDeadline()` after `AcceptKCP()` will not be able to change the listener's timeout. ```go lis.SetDeadline(time.Now().Add(10 * time.Second)) // OK conn, _...
New version of goproxy's no longer honours `proxy.Tr.DialContext`, I added handlers for `proxy.Tr.Dial`, `proxy.Tr.Dial`, and `proxy.ConnectDial` to ensure config `bind-IP` works as expected.
Allow socks5 server to bind its outbound socket to an address. Invoked by command line parameters `-s5bind ADDRESS` `ADDRESS` can be an IP(ie. 127.0.0.1), interface name(lo), or hostname(localhost). This is...