mirror of https://github.com/ehang-io/nps
close client connection when tcp lost connection in socks5
parent
3dc16414c5
commit
26f48aa7f1
|
@ -270,6 +270,7 @@ func (s *Sock5ModeServer) handleUDP(c net.Conn) {
|
||||||
|
|
||||||
b := common.BufPoolUdp.Get().([]byte)
|
b := common.BufPoolUdp.Get().([]byte)
|
||||||
defer common.BufPoolUdp.Put(b)
|
defer common.BufPoolUdp.Put(b)
|
||||||
|
defer target.Close()
|
||||||
for {
|
for {
|
||||||
_, err := c.Read(b)
|
_, err := c.Read(b)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue