mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-21 17:46:58 -05:00
fix #356
This commit is contained in:
parent
5b89c6aada
commit
f75d94817a
@ -86,7 +86,11 @@ func wsDial(src v2net.Address, dest v2net.Destination, options internet.DialerOp
|
||||
}
|
||||
}
|
||||
|
||||
uri := protocol + "://" + dest.NetAddr() + "/" + wsSettings.Path
|
||||
host := dest.NetAddr()
|
||||
if (protocol == "ws" && dest.Port == 80) || (protocol == "wss" && dest.Port == 443) {
|
||||
host = dest.Address.String()
|
||||
}
|
||||
uri := protocol + "://" + host + "/" + wsSettings.Path
|
||||
|
||||
conn, resp, err := dialer.Dial(uri, nil)
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user