doc: update README

This commit is contained in:
nadoo 2018-01-22 23:24:33 +08:00
parent d8a78df402
commit 24f5c98ca9
2 changed files with 3 additions and 4 deletions

View File

@ -26,7 +26,7 @@ Listen (local proxy server):
- DNS Tunnel(udp2tcp)
Forward (local proxy client/upstream proxy server):
- Socks5 proxy(tcp)
- Socks5 proxy(tcp&udp)
- Http proxy(tcp)
- SS proxy(tcp&udp&uot)
@ -50,7 +50,6 @@ General:
TODO:
- [ ] Socks5 UDP client
- [ ] Transparent UDP proxy (iptables tproxy)
- [ ] DNS Cache
- [ ] TUN/TAP device support

View File

@ -128,7 +128,7 @@ func (s *SOCKS5) ServeTCP(c net.Conn) {
if err, ok := err.(net.Error); ok && err.Timeout() {
continue
}
logf("UDP Associate End.")
logf("proxy-socks5 servetcp udp associate end")
return
}
}
@ -620,7 +620,7 @@ func NewSocks5PktConn(c net.PacketConn, writeAddr net.Addr, tgtAddr Addr, tgtHea
if err, ok := err.(net.Error); ok && err.Timeout() {
continue
}
logf("UDP Associate End.")
logf("proxy-socks5 dialudp udp associate end")
return
}
}()