mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-18 23:36:39 +01:00
* fix segfault when offline (#330)
This commit is contained in:
parent
7a0a45e9d2
commit
5c1b5816d4
1 changed files with 4 additions and 0 deletions
|
@ -666,6 +666,10 @@ namespace tunnel
|
||||||
{
|
{
|
||||||
// trying to create one more inbound tunnel
|
// trying to create one more inbound tunnel
|
||||||
auto 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;
|
||||||
|
}
|
||||||
LogPrint (eLogDebug, "Tunnel: creating one hop inbound tunnel");
|
LogPrint (eLogDebug, "Tunnel: creating one hop inbound tunnel");
|
||||||
CreateTunnel<InboundTunnel> (
|
CreateTunnel<InboundTunnel> (
|
||||||
std::make_shared<TunnelConfig> (std::vector<std::shared_ptr<const i2p::data::IdentityEx> > { router->GetRouterIdentity () })
|
std::make_shared<TunnelConfig> (std::vector<std::shared_ptr<const i2p::data::IdentityEx> > { router->GetRouterIdentity () })
|
||||||
|
|
Loading…
Add table
Reference in a new issue