mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-08 22:13:48 +01:00
don't disable NTCP2 address if Yggdrasil address is presented
This commit is contained in:
parent
1bc3de8df4
commit
3b32da4f5c
2 changed files with 6 additions and 1 deletions
|
@ -202,7 +202,11 @@ namespace util
|
||||||
i2p::context.PublishNTCP2Address (port, false); // unpublish
|
i2p::context.PublishNTCP2Address (port, false); // unpublish
|
||||||
}
|
}
|
||||||
if (ygg)
|
if (ygg)
|
||||||
|
{
|
||||||
|
if (!ntcp2)
|
||||||
|
i2p::context.PublishNTCP2Address (port, true);
|
||||||
i2p::context.UpdateNTCP2V6Address (yggaddr);
|
i2p::context.UpdateNTCP2V6Address (yggaddr);
|
||||||
|
}
|
||||||
|
|
||||||
bool transit; i2p::config::GetOption("notransit", transit);
|
bool transit; i2p::config::GetOption("notransit", transit);
|
||||||
i2p::context.SetAcceptsTunnels (!transit);
|
i2p::context.SetAcceptsTunnels (!transit);
|
||||||
|
|
|
@ -679,7 +679,8 @@ namespace i2p
|
||||||
|
|
||||||
// read NTCP2
|
// read NTCP2
|
||||||
bool ntcp2; i2p::config::GetOption("ntcp2.enabled", ntcp2);
|
bool ntcp2; i2p::config::GetOption("ntcp2.enabled", ntcp2);
|
||||||
if (ntcp2)
|
bool ygg; i2p::config::GetOption("meshnets.yggdrasil", ygg);
|
||||||
|
if (ntcp2 || ygg)
|
||||||
{
|
{
|
||||||
if (!m_NTCP2Keys) NewNTCP2Keys ();
|
if (!m_NTCP2Keys) NewNTCP2Keys ();
|
||||||
UpdateNTCP2Address (true); // enable NTCP2
|
UpdateNTCP2Address (true); // enable NTCP2
|
||||||
|
|
Loading…
Add table
Reference in a new issue