chore(proxymux): make subListener dereg immediate

Now you can call ListenHTTP() again immediately after previous closed.
This commit is contained in:
Haruue 2024-04-12 14:47:12 +08:00
parent 6d9c4fd4e5
commit 044620a5db
No known key found for this signature in database
GPG key ID: F6083B28CBCBC148

View file

@ -91,14 +91,20 @@ func (l *muxListener) mainLoop() {
go l.dispatch(conn) go l.dispatch(conn)
case <-socksCloseChan: case <-socksCloseChan:
l.lock.Lock() l.lock.Lock()
l.socksListener = nil if socksCloseChan == l.socksListener.closeChan {
// not replaced by another ListenSOCKS()
l.socksListener = nil
}
l.lock.Unlock() l.lock.Unlock()
if l.checkIdle() { if l.checkIdle() {
return return
} }
case <-httpCloseChan: case <-httpCloseChan:
l.lock.Lock() l.lock.Lock()
l.httpListener = nil if httpCloseChan == l.httpListener.closeChan {
// not replaced by another ListenHTTP()
l.httpListener = nil
}
l.lock.Unlock() l.lock.Unlock()
if l.checkIdle() { if l.checkIdle() {
return return
@ -160,12 +166,21 @@ func (l *muxListener) ListenHTTP() (net.Listener, error) {
defer l.lock.Unlock() defer l.lock.Unlock()
if l.httpListener != nil { if l.httpListener != nil {
return nil, OpErr{ subListenerPendingClosed := false
Addr: l.base.Addr(), select {
Protocol: "http", case <-l.httpListener.closeChan:
Op: "bind-protocol", subListenerPendingClosed = true
Err: ErrProtocolInUse, default:
} }
if !subListenerPendingClosed {
return nil, OpErr{
Addr: l.base.Addr(),
Protocol: "http",
Op: "bind-protocol",
Err: ErrProtocolInUse,
}
}
l.httpListener = nil
} }
select { select {
@ -184,12 +199,21 @@ func (l *muxListener) ListenSOCKS() (net.Listener, error) {
defer l.lock.Unlock() defer l.lock.Unlock()
if l.socksListener != nil { if l.socksListener != nil {
return nil, OpErr{ subListenerPendingClosed := false
Addr: l.base.Addr(), select {
Protocol: "socks", case <-l.socksListener.closeChan:
Op: "bind-protocol", subListenerPendingClosed = true
Err: ErrProtocolInUse, default:
} }
if !subListenerPendingClosed {
return nil, OpErr{
Addr: l.base.Addr(),
Protocol: "socks",
Op: "bind-protocol",
Err: ErrProtocolInUse,
}
}
l.socksListener = nil
} }
select { select {