Add disconnect handling
- Server will now attempt to reconnect to the master server when connection to it is lost.
This commit is contained in:
parent
04862c3757
commit
0862c4b717
@ -24,6 +24,7 @@
|
|||||||
#include <QHostAddress>
|
#include <QHostAddress>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QTcpSocket>
|
#include <QTcpSocket>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief A communicator class to update the master server on the server's status.
|
* @brief A communicator class to update the master server on the server's status.
|
||||||
|
@ -62,6 +62,15 @@ void Advertiser::socketConnected()
|
|||||||
void Advertiser::socketDisconnected()
|
void Advertiser::socketDisconnected()
|
||||||
{
|
{
|
||||||
qDebug("Connection to master server lost");
|
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)
|
void Advertiser::reloadRequested(QString p_name, QString p_desc)
|
||||||
|
Loading…
Reference in New Issue
Block a user