mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 06:58:57 +01:00
net, refactor: Move AddLocal call one level up
This change simplifies the following commit.
This commit is contained in:
@@ -2211,10 +2211,6 @@ bool CConnman::BindListenPort(const CService& addrBind, bilingual_str& strError,
|
|||||||
}
|
}
|
||||||
|
|
||||||
vhListenSocket.push_back(ListenSocket(hListenSocket, permissions));
|
vhListenSocket.push_back(ListenSocket(hListenSocket, permissions));
|
||||||
|
|
||||||
if (addrBind.IsRoutable() && fDiscover && (permissions & PF_NOBAN) == 0)
|
|
||||||
AddLocal(addrBind, LOCAL_BIND);
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2308,6 +2304,11 @@ bool CConnman::Bind(const CService &addr, unsigned int flags, NetPermissionFlags
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (addr.IsRoutable() && fDiscover && (permissions & PF_NOBAN) == 0) {
|
||||||
|
AddLocal(addr, LOCAL_BIND);
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user