Fix reset outbounds

This commit is contained in:
世界 2024-07-07 15:45:50 +08:00
parent 6144c8e340
commit 98ff897f35
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
13 changed files with 92 additions and 15 deletions

View file

@ -116,3 +116,7 @@ func (c *Client) DialContext(ctx context.Context) (net.Conn, error) {
}
return conn, nil
}
func (c *Client) Close() error {
return nil
}