Fix http socks close

This commit is contained in:
HystericalDragon 2024-06-17 12:37:09 +08:00 committed by 世界
parent b8736cc58d
commit d9f2559214
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 4 additions and 0 deletions

View file

@ -80,6 +80,7 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
} }
if c.host != "" && c.host != destination.Fqdn { if c.host != "" && c.host != destination.Fqdn {
if c.path != "" { if c.path != "" {
_ = conn.Close()
return nil, E.New("Host header and path are not allowed at the same time") return nil, E.New("Host header and path are not allowed at the same time")
} }
request.Host = c.host request.Host = c.host
@ -90,6 +91,7 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
if c.path != "" { if c.path != "" {
err = URLSetPath(request.URL, c.path) err = URLSetPath(request.URL, c.path)
if err != nil { if err != nil {
_ = conn.Close()
return nil, err return nil, err
} }
} }

View file

@ -149,6 +149,7 @@ func (c *Client) DialContext(ctx context.Context, network string, address M.Sock
} }
return NewAssociatePacketConn(udpConn, address, tcpConn), nil return NewAssociatePacketConn(udpConn, address, tcpConn), nil
} }
_ = tcpConn.Close()
return nil, os.ErrInvalid return nil, os.ErrInvalid
} }
@ -181,5 +182,6 @@ func (c *Client) BindContext(ctx context.Context, address M.Socksaddr) (net.Conn
} }
return tcpConn, nil return tcpConn, nil
} }
_ = tcpConn.Close()
return nil, os.ErrInvalid return nil, os.ErrInvalid
} }