mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-08 22:13:48 +01:00
revert
This commit is contained in:
parent
d030df925f
commit
be6aab4c40
1 changed files with 4 additions and 12 deletions
12
Tunnel.cpp
12
Tunnel.cpp
|
@ -642,11 +642,7 @@ namespace tunnel
|
|||
{
|
||||
// trying to create one more oubound tunnel
|
||||
auto inboundTunnel = GetNextInboundTunnel ();
|
||||
std::shared_ptr<const i2p::data::RouterInfo> router(nullptr);
|
||||
if (i2p::transport::transports.RoutesRestricted())
|
||||
router = i2p::transport::transports.GetRestrictedPeer();
|
||||
else
|
||||
router = i2p::data::netdb.GetRandomRouter ();
|
||||
auto router = i2p::data::netdb.GetRandomRouter ();
|
||||
if (!inboundTunnel || !router) return;
|
||||
LogPrint (eLogDebug, "Tunnel: creating one hop outbound tunnel");
|
||||
CreateTunnel<OutboundTunnel> (
|
||||
|
@ -708,11 +704,7 @@ namespace tunnel
|
|||
if (m_OutboundTunnels.empty () || m_InboundTunnels.size () < 5)
|
||||
{
|
||||
// trying to create one more inbound tunnel
|
||||
std::shared_ptr<const i2p::data::RouterInfo> router(nullptr);
|
||||
if (i2p::transport::transports.RoutesRestricted())
|
||||
router = i2p::transport::transports.GetRestrictedPeer();
|
||||
else
|
||||
router = i2p::data::netdb.GetRandomRouter ();
|
||||
auto router = i2p::data::netdb.GetRandomRouter ();
|
||||
if (!router) {
|
||||
LogPrint (eLogWarning, "Tunnel: can't find any router, skip creating tunnel");
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue