mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-03 13:53:37 +03:00
Fix missing port in origin for redirect
This commit is contained in:
parent
4d5424cac6
commit
bc2b26292d
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ int NaiveConnection::DoConnectServer() {
|
|||
const auto& addr = ipe.address();
|
||||
auto name = resolver_->FindNameByAddress(addr);
|
||||
if (!name.empty()) {
|
||||
origin.set_host(name);
|
||||
origin = HostPortPair(name, ipe.port());
|
||||
} else if (!resolver_->IsInResolvedRange(addr)) {
|
||||
origin = HostPortPair::FromIPEndPoint(ipe);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue