1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-26 16:24:17 +00:00

* fix segfault when offline (#330)

This commit is contained in:
hagen 2016-02-10 00:00:00 +00:00
parent 7a0a45e9d2
commit 5c1b5816d4

View File

@ -666,6 +666,10 @@ namespace tunnel
{
// trying to create one more inbound tunnel
auto router = i2p::data::netdb.GetRandomRouter ();
if (!router) {
LogPrint (eLogWarning, "Tunnel: can't find any router, skip creating tunnel");
return;
}
LogPrint (eLogDebug, "Tunnel: creating one hop inbound tunnel");
CreateTunnel<InboundTunnel> (
std::make_shared<TunnelConfig> (std::vector<std::shared_ptr<const i2p::data::IdentityEx> > { router->GetRouterIdentity () })