mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
different cost for direct or with introducers SSU address
This commit is contained in:
parent
11c924bbe7
commit
ae58a7007b
@ -432,6 +432,7 @@ namespace i2p
|
||||
for (auto& addr : addresses)
|
||||
if (addr->ssu)
|
||||
{
|
||||
addr->cost = 11;
|
||||
addr->caps &= ~i2p::data::RouterInfo::eSSUIntroducer; // can't be introducer
|
||||
addr->ssu->introducers.clear ();
|
||||
port = addr->port;
|
||||
@ -459,6 +460,7 @@ namespace i2p
|
||||
for (auto& addr : addresses)
|
||||
if (addr->ssu)
|
||||
{
|
||||
addr->cost = 9;
|
||||
addr->caps |= i2p::data::RouterInfo::eSSUIntroducer;
|
||||
addr->ssu->introducers.clear ();
|
||||
port = addr->port;
|
||||
|
@ -772,7 +772,7 @@ namespace data
|
||||
addr->host = boost::asio::ip::address::from_string (host);
|
||||
addr->port = port;
|
||||
addr->transportStyle = eTransportSSU;
|
||||
addr->cost = 10; // NTCP2 should have priority over SSU
|
||||
addr->cost = 9; // NTCP2 should have priority over SSU
|
||||
addr->caps = i2p::data::RouterInfo::eSSUTesting | i2p::data::RouterInfo::eSSUIntroducer; // BC;
|
||||
addr->date = 0;
|
||||
addr->ssu.reset (new SSUExt ());
|
||||
|
Loading…
Reference in New Issue
Block a user