First check-in of the Qtopia build system. See qtopia-build/README.
[quassel.git] / src / core / core.cpp
index d633038..dc22a97 100644 (file)
@@ -94,6 +94,7 @@ void Core::stopListening() {
 
 void Core::incomingConnection() {
   // TODO implement SSL
+  // TODO While
   QTcpSocket *socket = server.nextPendingConnection();
   connect(socket, SIGNAL(disconnected()), this, SLOT(clientDisconnected()));
   connect(socket, SIGNAL(readyRead()), this, SLOT(clientHasData()));