mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
chore(proxymux): make subListener dereg immediate
Now you can call ListenHTTP() again immediately after previous closed.
This commit is contained in:
parent
6d9c4fd4e5
commit
044620a5db
1 changed files with 36 additions and 12 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue