|
|
@ -237,9 +237,8 @@ namespace transport |
|
|
|
std::map<boost::asio::ip::udp::endpoint, std::shared_ptr<SSUSession> > * sessions) |
|
|
|
std::map<boost::asio::ip::udp::endpoint, std::shared_ptr<SSUSession> > * sessions) |
|
|
|
{ |
|
|
|
{ |
|
|
|
std::shared_ptr<SSUSession> session; |
|
|
|
std::shared_ptr<SSUSession> session; |
|
|
|
for (auto it1: packets) |
|
|
|
for (auto& packet: packets) |
|
|
|
{ |
|
|
|
{ |
|
|
|
auto packet = it1; |
|
|
|
|
|
|
|
try |
|
|
|
try |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (!session || session->GetRemoteEndpoint () != packet->from) // we received packet for other session than previous
|
|
|
|
if (!session || session->GetRemoteEndpoint () != packet->from) // we received packet for other session than previous
|
|
|
@ -431,11 +430,11 @@ namespace transport |
|
|
|
|
|
|
|
|
|
|
|
void SSUServer::DeleteAllSessions () |
|
|
|
void SSUServer::DeleteAllSessions () |
|
|
|
{ |
|
|
|
{ |
|
|
|
for (auto it: m_Sessions) |
|
|
|
for (auto& it: m_Sessions) |
|
|
|
it.second->Close (); |
|
|
|
it.second->Close (); |
|
|
|
m_Sessions.clear (); |
|
|
|
m_Sessions.clear (); |
|
|
|
|
|
|
|
|
|
|
|
for (auto it: m_SessionsV6) |
|
|
|
for (auto& it: m_SessionsV6) |
|
|
|
it.second->Close (); |
|
|
|
it.second->Close (); |
|
|
|
m_SessionsV6.clear (); |
|
|
|
m_SessionsV6.clear (); |
|
|
|
} |
|
|
|
} |
|
|
@ -444,7 +443,7 @@ namespace transport |
|
|
|
std::shared_ptr<SSUSession> SSUServer::GetRandomV4Session (Filter filter) // v4 only
|
|
|
|
std::shared_ptr<SSUSession> SSUServer::GetRandomV4Session (Filter filter) // v4 only
|
|
|
|
{ |
|
|
|
{ |
|
|
|
std::vector<std::shared_ptr<SSUSession> > filteredSessions; |
|
|
|
std::vector<std::shared_ptr<SSUSession> > filteredSessions; |
|
|
|
for (auto s :m_Sessions) |
|
|
|
for (const auto& s :m_Sessions) |
|
|
|
if (filter (s.second)) filteredSessions.push_back (s.second); |
|
|
|
if (filter (s.second)) filteredSessions.push_back (s.second); |
|
|
|
if (filteredSessions.size () > 0) |
|
|
|
if (filteredSessions.size () > 0) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -468,7 +467,7 @@ namespace transport |
|
|
|
std::shared_ptr<SSUSession> SSUServer::GetRandomV6Session (Filter filter) // v6 only
|
|
|
|
std::shared_ptr<SSUSession> SSUServer::GetRandomV6Session (Filter filter) // v6 only
|
|
|
|
{ |
|
|
|
{ |
|
|
|
std::vector<std::shared_ptr<SSUSession> > filteredSessions; |
|
|
|
std::vector<std::shared_ptr<SSUSession> > filteredSessions; |
|
|
|
for (auto s :m_SessionsV6) |
|
|
|
for (const auto& s :m_SessionsV6) |
|
|
|
if (filter (s.second)) filteredSessions.push_back (s.second); |
|
|
|
if (filter (s.second)) filteredSessions.push_back (s.second); |
|
|
|
if (filteredSessions.size () > 0) |
|
|
|
if (filteredSessions.size () > 0) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -535,7 +534,7 @@ namespace transport |
|
|
|
std::list<boost::asio::ip::udp::endpoint> newList; |
|
|
|
std::list<boost::asio::ip::udp::endpoint> newList; |
|
|
|
size_t numIntroducers = 0; |
|
|
|
size_t numIntroducers = 0; |
|
|
|
uint32_t ts = i2p::util::GetSecondsSinceEpoch (); |
|
|
|
uint32_t ts = i2p::util::GetSecondsSinceEpoch (); |
|
|
|
for (auto it :m_Introducers) |
|
|
|
for (const auto& it : m_Introducers) |
|
|
|
{ |
|
|
|
{ |
|
|
|
auto session = FindSession (it); |
|
|
|
auto session = FindSession (it); |
|
|
|
if (session && ts < session->GetCreationTime () + SSU_TO_INTRODUCER_SESSION_DURATION) |
|
|
|
if (session && ts < session->GetCreationTime () + SSU_TO_INTRODUCER_SESSION_DURATION) |
|
|
@ -552,11 +551,9 @@ namespace transport |
|
|
|
{ |
|
|
|
{ |
|
|
|
// create new
|
|
|
|
// create new
|
|
|
|
auto introducers = FindIntroducers (SSU_MAX_NUM_INTRODUCERS); |
|
|
|
auto introducers = FindIntroducers (SSU_MAX_NUM_INTRODUCERS); |
|
|
|
if (introducers.size () > 0) |
|
|
|
for (const auto& it1: introducers) |
|
|
|
{ |
|
|
|
{ |
|
|
|
for (auto it1: introducers) |
|
|
|
const auto& ep = it1->GetRemoteEndpoint (); |
|
|
|
{ |
|
|
|
|
|
|
|
auto& ep = it1->GetRemoteEndpoint (); |
|
|
|
|
|
|
|
i2p::data::RouterInfo::Introducer introducer; |
|
|
|
i2p::data::RouterInfo::Introducer introducer; |
|
|
|
introducer.iHost = ep.address (); |
|
|
|
introducer.iHost = ep.address (); |
|
|
|
introducer.iPort = ep.port (); |
|
|
|
introducer.iPort = ep.port (); |
|
|
@ -569,7 +566,6 @@ namespace transport |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
m_Introducers = newList; |
|
|
|
m_Introducers = newList; |
|
|
|
if (m_Introducers.size () < SSU_MAX_NUM_INTRODUCERS) |
|
|
|
if (m_Introducers.size () < SSU_MAX_NUM_INTRODUCERS) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -637,7 +633,7 @@ namespace transport |
|
|
|
it = m_PeerTests.erase (it); |
|
|
|
it = m_PeerTests.erase (it); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else |
|
|
|
it++; |
|
|
|
++it; |
|
|
|
} |
|
|
|
} |
|
|
|
if (numDeleted > 0) |
|
|
|
if (numDeleted > 0) |
|
|
|
LogPrint (eLogDebug, "SSU: ", numDeleted, " peer tests have been expired"); |
|
|
|
LogPrint (eLogDebug, "SSU: ", numDeleted, " peer tests have been expired"); |
|
|
|