Merge pull request #115 from AttorneyOnline/disconnect-handling

Add disconnect handling
This commit is contained in:
Denton Poss 2021-05-01 19:15:25 -05:00 committed by GitHub
commit 7ca24ae9cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#include <QHostAddress>
#include <QString>
#include <QTcpSocket>
#include <QTimer>
/**
* @brief A communicator class to update the master server on the server's status.

View File

@ -62,6 +62,15 @@ void Advertiser::socketConnected()
void Advertiser::socketDisconnected()
{
qDebug("Connection to master server lost");
QTimer timer;
while (socket->state() == QAbstractSocket::UnconnectedState) {
timer.start(60000);
QEventLoop timer_loop;
connect(&timer, SIGNAL(timeout()), &timer_loop, SLOT(quit()));
timer_loop.exec();
socket->connectToHost(ip, port);
socket->waitForConnected();
}
}
void Advertiser::reloadRequested(QString p_name, QString p_desc)