diff --git a/protocol/http/client.go b/protocol/http/client.go index 25351fd..013da4a 100644 --- a/protocol/http/client.go +++ b/protocol/http/client.go @@ -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)