From 76a5e160c21c30ff69c8d6649c4e731d1aa5acbc Mon Sep 17 00:00:00 2001 From: Alex X Date: Thu, 11 Dec 2025 22:00:35 +0300 Subject: [PATCH] Increase default dial timeout and probe timeout --- pkg/core/helpers.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/core/helpers.go b/pkg/core/helpers.go index 161a5504..6935e7f2 100644 --- a/pkg/core/helpers.go +++ b/pkg/core/helpers.go @@ -11,9 +11,9 @@ import ( const ( BufferSize = 64 * 1024 // 64K - ConnDialTimeout = time.Second * 3 - ConnDeadline = time.Second * 5 - ProbeTimeout = time.Second * 3 + ConnDialTimeout = 5 * time.Second + ConnDeadline = 5 * time.Second + ProbeTimeout = 5 * time.Second ) // Now90000 - timestamp for Video (clock rate = 90000 samples per second)