fix(proxymux): close of closed channel

when call listener.Close() twice
This commit is contained in:
Haruue 2024-04-11 23:07:44 +08:00
parent 34574e0339
commit 8d9b10a259
No known key found for this signature in database
GPG key ID: F6083B28CBCBC148

View file

@ -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
}