From 0ba5576c7be82790bbfb6fac24afaaebb89b6a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sun, 3 Dec 2023 16:52:53 +0800 Subject: [PATCH] Fix not set Host header for HTTP proxy client --- protocol/http/client.go | 4 ++++ 1 file changed, 4 insertions(+) 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)