1
0

cListenThread correctly closes all sockets.

This partially fixes FS 421.
This commit is contained in:
madmaxoft 2013-08-18 12:27:46 +02:00
parent 76cf61ce66
commit 40e9e5b95b

View File

@ -25,7 +25,7 @@ cListenThread::cListenThread(cCallback & a_Callback, cSocket::eFamily a_Family,
cListenThread::~cListenThread()
{
// TODO
Stop();
}
@ -79,7 +79,11 @@ void cListenThread::Stop(void)
// Wait for the thread to finish
super::Wait();
// Clean up all sockets
// Close all the listening sockets:
for (cSockets::iterator itr = m_Sockets.begin(), end = m_Sockets.end(); itr != end; ++itr)
{
itr->CloseSocket();
} // for itr - m_Sockets[]
m_Sockets.clear();
}