diff --git a/protocol/http/handshake.go b/protocol/http/handshake.go index b69dbe9..d93f208 100644 --- a/protocol/http/handshake.go +++ b/protocol/http/handshake.go @@ -180,6 +180,9 @@ func removeExtraHTTPHostPort(req *http.Request) { } if pHost, port, err := net.SplitHostPort(host); err == nil && port == "80" { + if M.ParseAddr(pHost).Is6() { + pHost = "[" + pHost + "]" + } host = pHost }