mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix not set Host header for HTTP proxy client
This commit is contained in:
parent
bca74039ea
commit
0ba5576c7b
1 changed files with 4 additions and 0 deletions
|
@ -81,6 +81,10 @@ 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