change reconnect timer from 2s to 5s

Change and increase the reconnect timer to avoid too frequent connection attempts.
This commit is contained in:
BlueBlock
2023-02-10 04:40:55 -05:00
parent f858c9fe48
commit 5cb32dd75a

View File

@@ -60,7 +60,7 @@ namespace mRemoteNG.Connection.Protocol
public ConnectionInfo.Force Force { get; set; }
public readonly System.Timers.Timer tmrReconnect = new System.Timers.Timer(2000);
public readonly System.Timers.Timer tmrReconnect = new System.Timers.Timer(5000);
protected ReconnectGroup ReconnectGroup;
protected ProtocolBase(string name)