PeerFinder work, Source fetch, show port in log

This commit is contained in:
Vinnie Falco
2013-10-04 21:29:13 -07:00
parent 30ff139a29
commit 82d8d9a092
17 changed files with 423 additions and 271 deletions

View File

@@ -279,19 +279,12 @@ public:
void onStop ()
{
m_journal.debug << "Stopping";
m_checker.cancel ();
if (this->Thread::isThreadRunning ())
{
m_journal.debug << "Stopping";
m_connectTimer.cancel();
m_endpointsTimer.cancel();
m_queue.dispatch (bind (&Thread::signalThreadShouldExit, this));
}
else
{
stopped();
}
m_logic.stop ();
m_connectTimer.cancel();
m_endpointsTimer.cancel();
m_queue.dispatch (bind (&Thread::signalThreadShouldExit, this));
}
//--------------------------------------------------------------------------