Fix IPv6 handshake for HTTP proxy

This commit is contained in:
世界 2024-02-21 13:39:11 +08:00
parent 30f7629317
commit 5ee4f84faf
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

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