mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Fix http socks close
This commit is contained in:
parent
b8736cc58d
commit
d9f2559214
2 changed files with 4 additions and 0 deletions
|
@ -149,6 +149,7 @@ func (c *Client) DialContext(ctx context.Context, network string, address M.Sock
|
|||
}
|
||||
return NewAssociatePacketConn(udpConn, address, tcpConn), nil
|
||||
}
|
||||
_ = tcpConn.Close()
|
||||
return nil, os.ErrInvalid
|
||||
}
|
||||
|
||||
|
@ -181,5 +182,6 @@ func (c *Client) BindContext(ctx context.Context, address M.Socksaddr) (net.Conn
|
|||
}
|
||||
return tcpConn, nil
|
||||
}
|
||||
_ = tcpConn.Close()
|
||||
return nil, os.ErrInvalid
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue