mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-03 03:47:40 +03:00
Fix create session
This commit is contained in:
parent
b8acf3f145
commit
cef8cd82b8
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ func (c *Client) offer(ctx context.Context) (abstractSession, error) {
|
|||
c.access.Lock()
|
||||
defer c.access.Unlock()
|
||||
|
||||
sessions := make([]abstractSession, 0, c.maxConnections)
|
||||
var sessions []abstractSession
|
||||
for element := c.connections.Front(); element != nil; {
|
||||
if element.Value.IsClosed() {
|
||||
nextElement := element.Next()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue