akashi-esquizolandia/src/ws_proxy.cpp
2020-08-26 01:28:00 -05:00

11 lines
320 B
C++

#include "include/ws_proxy.h"
WSProxy::WSProxy(QObject* parent) : QObject(parent)
{
server = new QWebSocketServer(QStringLiteral(""),
QWebSocketServer::NonSecureMode, this);
connect(server, SIGNAL(newConnection()), this, SLOT(wsConnected()));
}
void WSProxy::wsConnected() {}