mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix calculate host for HTTP connect client
This commit is contained in:
parent
544863e3f4
commit
349d7d31b3
1 changed files with 9 additions and 7 deletions
|
@ -23,6 +23,7 @@ type Client struct {
|
|||
serverAddr M.Socksaddr
|
||||
username string
|
||||
password string
|
||||
host string
|
||||
path string
|
||||
headers http.Header
|
||||
}
|
||||
|
@ -48,6 +49,12 @@ func NewClient(options Options) *Client {
|
|||
if options.Dialer == nil {
|
||||
client.dialer = N.SystemDialer
|
||||
}
|
||||
var host string
|
||||
if client.headers != nil {
|
||||
host = client.headers.Get("Host")
|
||||
client.headers.Del("Host")
|
||||
client.host = host
|
||||
}
|
||||
return client
|
||||
}
|
||||
|
||||
|
@ -71,16 +78,11 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
|
|||
"Proxy-Connection": []string{"Keep-Alive"},
|
||||
},
|
||||
}
|
||||
var host string
|
||||
if c.headers != nil {
|
||||
host = c.headers.Get("Host")
|
||||
c.headers.Del("Host")
|
||||
}
|
||||
if host != "" && host != destination.Fqdn {
|
||||
if c.host != "" && c.host != destination.Fqdn {
|
||||
if c.path != "" {
|
||||
return nil, E.New("Host header and path are not allowed at the same time")
|
||||
}
|
||||
request.Host = host
|
||||
request.Host = c.host
|
||||
request.URL = &url.URL{Opaque: destination.String()}
|
||||
} else {
|
||||
request.URL = &url.URL{Host: destination.String()}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue