mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-03 03:47:40 +03:00
Fix client close
This commit is contained in:
parent
17396401d3
commit
4b5fc8d384
1 changed files with 1 additions and 0 deletions
|
@ -117,6 +117,7 @@ func (c *Client) offer(ctx context.Context) (abstractSession, error) {
|
|||
var sessions []abstractSession
|
||||
for element := c.connections.Front(); element != nil; {
|
||||
if element.Value.IsClosed() {
|
||||
element.Value.Close()
|
||||
nextElement := element.Next()
|
||||
c.connections.Remove(element)
|
||||
element = nextElement
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue