mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
fix(proxymux): close of closed channel
when call listener.Close() twice
This commit is contained in:
parent
34574e0339
commit
8d9b10a259
1 changed files with 5 additions and 0 deletions
|
@ -248,6 +248,11 @@ func (l *subListener) Addr() net.Addr {
|
|||
// Close implements net.Listener.Close.
|
||||
// Upstream should use close(l.acceptChan) instead.
|
||||
func (l *subListener) Close() error {
|
||||
select {
|
||||
case <-l.closeChan:
|
||||
return nil
|
||||
default:
|
||||
}
|
||||
close(l.closeChan)
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue