|
@@ -60,7 +60,7 @@ InformationServer::~InformationServer()
|
|
|
// nicht constant
|
|
|
void InformationServer::runn()
|
|
|
{
|
|
|
- while( !end )
|
|
|
+ while( !end && aServer->isConnected() )
|
|
|
{
|
|
|
SSLSKlient *klient;
|
|
|
klient = aServer->getKlient();
|
|
@@ -72,7 +72,7 @@ void InformationServer::runn()
|
|
|
return;
|
|
|
}
|
|
|
if( !klient )
|
|
|
- return;
|
|
|
+ continue;
|
|
|
ISAKlient *clHandle = new ISAKlient( klient, getThis() );
|
|
|
clHandle->start();
|
|
|
}
|
|
@@ -80,12 +80,12 @@ void InformationServer::runn()
|
|
|
|
|
|
void InformationServer::thread()
|
|
|
{
|
|
|
- while( 1 )
|
|
|
+ while( server->isConnected() )
|
|
|
{
|
|
|
SKlient *klient;
|
|
|
klient = server->getKlient();
|
|
|
if( !klient )
|
|
|
- break;
|
|
|
+ continue;
|
|
|
Framework::getThreadRegister()->cleanUpClosedThreads();
|
|
|
ISKlient *clHandle = new ISKlient( klient, getThis() );
|
|
|
EnterCriticalSection( &cs );
|