mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix IPv6 handshake for HTTP proxy
This commit is contained in:
parent
30f7629317
commit
5ee4f84faf
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue