Преглед изворни кода

Increased timeout for ssh connection

Mihawk пре 12 година
родитељ
комит
a3374f3760
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      SshClient.cpp

+ 1 - 1
SshClient.cpp

@@ -274,7 +274,7 @@ bool SshClient::connectToHost(const QString &user, const QString &host)
     return false;
   else
   {
-    myConnectionTimerID = startTimer(60000); // up to 1 minute of waiting
+    myConnectionTimerID = startTimer(60000*3); // up to 3 minutes of waiting
     return true;
   }
 }