Browse Source

save profile if has connected

pull/1925/head
weko 1 year ago
parent
commit
2e2cbe7803
  1. 4
      libi2pd/Profiling.cpp

4
libi2pd/Profiling.cpp

@ -175,6 +175,7 @@ namespace data @@ -175,6 +175,7 @@ namespace data
void RouterProfile::Connected ()
{
m_HasConnected = true;
m_IsUseful = true;
UpdateTime ();
}
@ -209,7 +210,8 @@ namespace data @@ -209,7 +210,8 @@ namespace data
m_NumTunnelsAgreed = 0;
m_NumTunnelsDeclined = 0;
m_NumTunnelsNonReplied = 0;
m_IsUseful = false;
// we do not reset m_HasConnected here
// m_IsUseful = false;
isBad = false;
}
if (isBad) m_NumTimesRejected++; else m_NumTimesTaken++;

Loading…
Cancel
Save