From d7c3a707e5328cd41025d13c90fdfd3f1efbfcd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Tigerstr=C3=B6m?= Date: Tue, 31 Oct 2023 01:09:13 +0100 Subject: [PATCH] gbn: increase defaultResendTimeout to 1 seconds --- gbn/timeout_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gbn/timeout_manager.go b/gbn/timeout_manager.go index 8992027f..a9772a14 100644 --- a/gbn/timeout_manager.go +++ b/gbn/timeout_manager.go @@ -8,7 +8,7 @@ import ( const ( defaultHandshakeTimeout = 100 * time.Millisecond - defaultResendTimeout = 100 * time.Millisecond + defaultResendTimeout = 1000 * time.Millisecond finSendTimeout = 1000 * time.Millisecond defaultResendMultiplier = 5 DefaultSendTimeout = math.MaxInt64