1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-02 02:44:15 +00:00

publish NTCP2 for new routers

This commit is contained in:
orignal 2018-07-21 16:59:58 -04:00
parent 2406d57d51
commit c8f51380e6

View File

@ -93,10 +93,11 @@ namespace i2p
m_RouterInfo.SetRouterIdentity (GetIdentity ()); m_RouterInfo.SetRouterIdentity (GetIdentity ());
m_RouterInfo.Update (routerInfo.GetBuffer (), routerInfo.GetBufferLen ()); m_RouterInfo.Update (routerInfo.GetBuffer (), routerInfo.GetBufferLen ());
if (ntcp2) if (ntcp2) // TODO: should update routerInfo, but we ignore upublished NTCP2 addresses for now
{ {
NewNTCP2Keys (); NewNTCP2Keys ();
m_RouterInfo.AddNTCP2Address (m_NTCP2Keys->staticPublicKey, m_NTCP2Keys->iv); m_RouterInfo.AddNTCP2Address (m_NTCP2Keys->staticPublicKey, m_NTCP2Keys->iv);
UpdateRouterInfo ();
} }
} }