Merge pull request #115 from AttorneyOnline/disconnect-handling
Add disconnect handling
This commit is contained in:
commit
7ca24ae9cf
@ -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