mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix "Fix not set Host header for HTTP proxy client"
This commit is contained in:
parent
6b69046063
commit
01c915e1e4
1 changed files with 14 additions and 7 deletions
|
@ -67,13 +67,24 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
|
|||
}
|
||||
request := &http.Request{
|
||||
Method: http.MethodConnect,
|
||||
URL: &url.URL{
|
||||
Host: destination.String(),
|
||||
},
|
||||
Header: http.Header{
|
||||
"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.path != "" {
|
||||
return nil, E.New("Host header and path are not allowed at the same time")
|
||||
}
|
||||
request.Host = host
|
||||
request.URL = &url.URL{Opaque: destination.String()}
|
||||
} else {
|
||||
request.URL = &url.URL{Host: destination.String()}
|
||||
}
|
||||
if c.path != "" {
|
||||
err = URLSetPath(request.URL, c.path)
|
||||
if err != nil {
|
||||
|
@ -81,10 +92,6 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
|
|||
}
|
||||
}
|
||||
for key, valueList := range c.headers {
|
||||
if key == "Host" {
|
||||
request.Host = valueList[0]
|
||||
continue
|
||||
}
|
||||
request.Header.Set(key, valueList[0])
|
||||
for _, value := range valueList[1:] {
|
||||
request.Header.Add(key, value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue