increase ExoCmd to 18s to cover new 10s cycle loop for sodistore home

This commit is contained in:
Yinyin Liu 2026-03-11 07:29:08 +01:00
parent a1911325ad
commit ec830b5800
1 changed files with 2 additions and 2 deletions

View File

@ -436,9 +436,9 @@ public static class ExoCmd
public static async Task<Boolean> SendConfig(this Installation installation, Configuration config)
{
var maxRetransmissions = 4;
var maxRetransmissions = 6;
UdpClient udpClient = new UdpClient();
udpClient.Client.ReceiveTimeout = 2000;
udpClient.Client.ReceiveTimeout = 3000;
int port = 9000;
Console.WriteLine("Trying to reach installation with IP: " + installation.VpnIp);