mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
Merge pull request #1867 from Vort/sort_transports
Sort transports by IP:port pairs
This commit is contained in:
commit
544fcd147f
@ -810,37 +810,46 @@ namespace http {
|
|||||||
template<typename Sessions>
|
template<typename Sessions>
|
||||||
static void ShowTransportSessions (std::stringstream& s, const Sessions& sessions, const std::string name)
|
static void ShowTransportSessions (std::stringstream& s, const Sessions& sessions, const std::string name)
|
||||||
{
|
{
|
||||||
std::stringstream tmp_s, tmp_s6; uint16_t cnt = 0, cnt6 = 0;
|
auto comp = [](typename Sessions::mapped_type a, typename Sessions::mapped_type b)
|
||||||
for (const auto& it: sessions )
|
{ return a->GetRemoteEndpoint() < b->GetRemoteEndpoint(); };
|
||||||
|
std::set<typename Sessions::mapped_type, decltype(comp)> sortedSessions(comp);
|
||||||
|
for (const auto& it : sessions)
|
||||||
{
|
{
|
||||||
auto endpoint = it.second->GetRemoteEndpoint ();
|
auto ret = sortedSessions.insert(it.second);
|
||||||
if (it.second && it.second->IsEstablished () && endpoint.address ().is_v4 ())
|
if (!ret.second)
|
||||||
|
LogPrint(eLogError, "HTTPServer: Duplicate remote endpoint detected: ", (*ret.first)->GetRemoteEndpoint());
|
||||||
|
}
|
||||||
|
std::stringstream tmp_s, tmp_s6; uint16_t cnt = 0, cnt6 = 0;
|
||||||
|
for (const auto& it: sortedSessions)
|
||||||
|
{
|
||||||
|
auto endpoint = it->GetRemoteEndpoint ();
|
||||||
|
if (it && it->IsEstablished () && endpoint.address ().is_v4 ())
|
||||||
{
|
{
|
||||||
tmp_s << "<div class=\"listitem\">\r\n";
|
tmp_s << "<div class=\"listitem\">\r\n";
|
||||||
if (it.second->IsOutgoing ()) tmp_s << " ⇒ ";
|
if (it->IsOutgoing ()) tmp_s << " ⇒ ";
|
||||||
tmp_s << i2p::data::GetIdentHashAbbreviation (it.second->GetRemoteIdentity ()->GetIdentHash ()) << ": "
|
tmp_s << i2p::data::GetIdentHashAbbreviation (it->GetRemoteIdentity ()->GetIdentHash ()) << ": "
|
||||||
<< endpoint.address ().to_string () << ":" << endpoint.port ();
|
<< endpoint.address ().to_string () << ":" << endpoint.port ();
|
||||||
if (!it.second->IsOutgoing ()) tmp_s << " ⇒ ";
|
if (!it->IsOutgoing ()) tmp_s << " ⇒ ";
|
||||||
tmp_s << " [" << it.second->GetNumSentBytes () << ":" << it.second->GetNumReceivedBytes () << "]";
|
tmp_s << " [" << it->GetNumSentBytes () << ":" << it->GetNumReceivedBytes () << "]";
|
||||||
if (it.second->GetRelayTag ())
|
if (it->GetRelayTag ())
|
||||||
tmp_s << " [itag:" << it.second->GetRelayTag () << "]";
|
tmp_s << " [itag:" << it->GetRelayTag () << "]";
|
||||||
if (it.second->GetSendQueueSize () > 0)
|
if (it->GetSendQueueSize () > 0)
|
||||||
tmp_s << " [queue:" << it.second->GetSendQueueSize () << "]";
|
tmp_s << " [queue:" << it->GetSendQueueSize () << "]";
|
||||||
tmp_s << "</div>\r\n" << std::endl;
|
tmp_s << "</div>\r\n" << std::endl;
|
||||||
cnt++;
|
cnt++;
|
||||||
}
|
}
|
||||||
if (it.second && it.second->IsEstablished () && endpoint.address ().is_v6 ())
|
if (it && it->IsEstablished () && endpoint.address ().is_v6 ())
|
||||||
{
|
{
|
||||||
tmp_s6 << "<div class=\"listitem\">\r\n";
|
tmp_s6 << "<div class=\"listitem\">\r\n";
|
||||||
if (it.second->IsOutgoing ()) tmp_s6 << " ⇒ ";
|
if (it->IsOutgoing ()) tmp_s6 << " ⇒ ";
|
||||||
tmp_s6 << i2p::data::GetIdentHashAbbreviation (it.second->GetRemoteIdentity ()->GetIdentHash ()) << ": "
|
tmp_s6 << i2p::data::GetIdentHashAbbreviation (it->GetRemoteIdentity ()->GetIdentHash ()) << ": "
|
||||||
<< "[" << endpoint.address ().to_string () << "]:" << endpoint.port ();
|
<< "[" << endpoint.address ().to_string () << "]:" << endpoint.port ();
|
||||||
if (!it.second->IsOutgoing ()) tmp_s6 << " ⇒ ";
|
if (!it->IsOutgoing ()) tmp_s6 << " ⇒ ";
|
||||||
tmp_s6 << " [" << it.second->GetNumSentBytes () << ":" << it.second->GetNumReceivedBytes () << "]";
|
tmp_s6 << " [" << it->GetNumSentBytes () << ":" << it->GetNumReceivedBytes () << "]";
|
||||||
if (it.second->GetRelayTag ())
|
if (it->GetRelayTag ())
|
||||||
tmp_s6 << " [itag:" << it.second->GetRelayTag () << "]";
|
tmp_s6 << " [itag:" << it->GetRelayTag () << "]";
|
||||||
if (it.second->GetSendQueueSize () > 0)
|
if (it->GetSendQueueSize () > 0)
|
||||||
tmp_s6 << " [queue:" << it.second->GetSendQueueSize () << "]";
|
tmp_s6 << " [queue:" << it->GetSendQueueSize () << "]";
|
||||||
tmp_s6 << "</div>\r\n" << std::endl;
|
tmp_s6 << "</div>\r\n" << std::endl;
|
||||||
cnt6++;
|
cnt6++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user