Clean up a fair bit of the server backends. Getting rid of compilation warnings, signal/slot connection issues, etc..

This commit is contained in:
Ken Moore
2016-02-01 15:39:29 -05:00
parent 7463d84229
commit c8f97a69fe
6 changed files with 32 additions and 21 deletions

View File

@@ -148,7 +148,6 @@ void WebServer::NewSocketConnection(){
qDebug() << "New Socket Connection";
connect(sock, SIGNAL(SocketClosed(QString)), this, SLOT(SocketClosed(QString)) );
connect(EVENTS, SIGNAL(NewEvent(EventWatcher::EVENT_TYPE, QJsonValue)), sock, SLOT(EventUpdate(EventWatcher::EVENT_TYPE, QJsonValue)) );
connect(sock, SIGNAL(BlackListAddress(QHostAddress)), this, SLOT(BlackListConnection(QHostAddress)) );
OpenSockets << sock;
}