Browse Source

publish NTCP2 address instead NTCP if NTCP is disabled

pull/1347/head
orignal 5 years ago
parent
commit
0be664cc3d
  1. 6
      libi2pd/RouterContext.cpp

6
libi2pd/RouterContext.cpp

@ -106,6 +106,12 @@ namespace i2p @@ -106,6 +106,12 @@ namespace i2p
{
if (!m_NTCP2Keys) NewNTCP2Keys ();
UpdateNTCP2Address (true);
if (!ntcp) // NTCP2 should replace NTCP
{
bool published; i2p::config::GetOption("ntcp2.published", published);
if (published)
PublishNTCP2Address (port, true);
}
}
}

Loading…
Cancel
Save