Commit 86fa8f30 authored by Gavin Bisesi's avatar Gavin Bisesi
Browse files

Change client send-ping timer back to 1sec

9sec was causing too many timeout issues.

Timeout from both client and server perspective needs to be revisited
parent 52827573
......@@ -15,7 +15,7 @@ RemoteClient::RemoteClient(QObject *parent)
: AbstractClient(parent), timeRunning(0), lastDataReceived(0), messageInProgress(false), handshakeStarted(false), messageLength(0)
{
timer = new QTimer(this);
timer->setInterval(9000);
timer->setInterval(1000);
connect(timer, SIGNAL(timeout()), this, SLOT(ping()));
socket = new QTcpSocket(this);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment