From 6b9d906f6888dd6f7891db4d62ed5b098ed6b8e3 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Thu, 9 Jan 2025 15:10:16 -0500 Subject: [PATCH] make FSC timeout just slightly more then the maximum heartbeat time; --- src/host/modem/port/specialized/V24UDPPort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/host/modem/port/specialized/V24UDPPort.cpp b/src/host/modem/port/specialized/V24UDPPort.cpp index 948b82e5..d3ed9da7 100644 --- a/src/host/modem/port/specialized/V24UDPPort.cpp +++ b/src/host/modem/port/specialized/V24UDPPort.cpp @@ -62,7 +62,7 @@ V24UDPPort::V24UDPPort(uint32_t peerId, const std::string& address, uint16_t mod m_ctrlAddrLen(0U), m_buffer(2000U, "UDP Port Ring Buffer"), m_fscInitiator(fscInitiator), - m_timeoutTimer(1000U, 30U), + m_timeoutTimer(1000U, 45U), m_reqConnectionTimer(1000U, 30U), m_heartbeatInterval(5U), m_heartbeatTimer(1000U, 5U),