From 05fa1c21146e91c9f9dc130afff221a0e3c30ff9 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Tue, 5 Nov 2024 21:09:39 -0500 Subject: [PATCH] increase SSL timeout delay from 2 to 5 seconds; --- src/common/network/tcp/SecureTcpClient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/network/tcp/SecureTcpClient.h b/src/common/network/tcp/SecureTcpClient.h index 27dfff71..8c7c5a14 100644 --- a/src/common/network/tcp/SecureTcpClient.h +++ b/src/common/network/tcp/SecureTcpClient.h @@ -80,7 +80,7 @@ namespace network int status = -1; struct timeval tv, tvRestore; - tv.tv_sec = 2; + tv.tv_sec = 5; tv.tv_usec = 0; tvRestore = tv;