mirror of https://github.com/v2ray/v2ray-core
prevent double close in tcp hub
parent
e480091388
commit
52ed93408b
|
@ -63,11 +63,16 @@ func ListenTCP(address v2net.Address, port v2net.Port, callback ConnectionHandle
|
|||
}
|
||||
|
||||
func (v *TCPHub) Close() {
|
||||
defer func() {
|
||||
recover()
|
||||
}()
|
||||
|
||||
select {
|
||||
case <-v.closed:
|
||||
return
|
||||
default:
|
||||
v.listener.Close()
|
||||
close(v.closed)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue