Authenticate the runtime to the server. Fixes #2228

This commit is contained in:
Dave Page
2017-03-06 14:53:49 +00:00
parent 6d6a3753ee
commit 6696b3c316
5 changed files with 34 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ class Server : public QThread
Q_OBJECT
public:
Server(quint16 port);
Server(quint16 port, QString key);
~Server();
bool Init();
@@ -39,6 +39,7 @@ private:
QString m_error;
quint16 m_port;
QString m_key;
wchar_t *m_wcAppName;
};