1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-02-02 22:35:24 -05:00
This commit is contained in:
Darien Raymond
2017-04-05 13:46:13 +02:00

View File

@@ -42,7 +42,7 @@ func (s *session) closeUplink() {
allDone = s.uplinkClosed && s.downlinkClosed
s.Unlock()
if allDone {
s.parent.remove(s.id)
go s.parent.remove(s.id)
}
}
@@ -53,7 +53,7 @@ func (s *session) closeDownlink() {
allDone = s.uplinkClosed && s.downlinkClosed
s.Unlock()
if allDone {
s.parent.remove(s.id)
go s.parent.remove(s.id)
}
}
@@ -279,6 +279,15 @@ func (m *Client) fetchOutput() {
break
}
}
// Close all downlinks
m.access.RLock()
for _, s := range m.sessions {
s.closeUplink()
s.closeDownlink()
s.output.CloseError()
}
m.access.RUnlock()
}
type Server struct {