Get the server all setup for enabling encryption (alternate API calls implemented - just no encryption turned on yet).

This commit is contained in:
Ken Moore
2016-05-25 08:16:15 -04:00
parent 2ac91c7c70
commit 4ec1dd2694
6 changed files with 180 additions and 25 deletions

View File

@@ -40,7 +40,7 @@ bool WebServer::startServer(quint16 port, bool websocket){
if(ok){
QCoreApplication::processEvents();
qDebug() << "Server Started:" << QDateTime::currentDateTime().toString(Qt::ISODate);
qDebug() << " Port:" << port;
qDebug() << " Port:" << (BRIDGE_ONLY ? "(Bridge Only)" : QString::number(port));
if(WSServer!=0){ qDebug() << " URL:" << WSServer->serverUrl().toString(); }
}else{
qCritical() << "Could not start server - exiting...";