Fix not set Host header for HTTP proxy client

This commit is contained in:
世界 2023-12-03 16:52:53 +08:00
parent bca74039ea
commit 0ba5576c7b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -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)