Explorar o código

Fehler durch unverschlüsselte Klients behoben

Kolja Strohm %!s(int64=6) %!d(string=hai) anos
pai
achega
a23fb67529
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  1. 4 4
      ChatServer/ChatServer.cpp

+ 4 - 4
ChatServer/ChatServer.cpp

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