From daae789d4ef33ba92bbd0396e7810f0881865ff4 Mon Sep 17 00:00:00 2001 From: Jonathan Bauer Date: Mon, 11 May 2015 16:56:10 +0200 Subject: [client] reset timeouts to normal intervals --- src/client/net/serverconnection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/net') diff --git a/src/client/net/serverconnection.cpp b/src/client/net/serverconnection.cpp index c81bfb4..17074b2 100644 --- a/src/client/net/serverconnection.cpp +++ b/src/client/net/serverconnection.cpp @@ -34,9 +34,9 @@ ServerConnection::ServerConnection(const QString& host, const quint16 port, cons ); qDebug("Connecting to %s on port %d", host.toUtf8().data(), (int)port); _socket->connectToHostEncrypted(host, port); - _timerId = startTimer(600000);// TODO(manuel): Debuging purposes + _timerId = startTimer(4000); _lastData = QDateTime::currentMSecsSinceEpoch() + PING_TIMEOUT_MS; - _timerConnectionCheck = startTimer(600000);// TODO(manuel): Debuging purposes + _timerConnectionCheck = startTimer(5000); // Connect the vnc start/stop signal to this class, so we can tell the server about successful vnc server startup connect(VncServer::instance(), SIGNAL(started(int, QString&, QString&)), this, SLOT(onVncServerStartStop(int, QString&, QString&))); } -- cgit v1.2.3-55-g7522