From 5a713b0142465cbf8c6d161e3e0f9e7ab662e1e8 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sun, 6 Jun 2021 06:57:16 -0400 Subject: [PATCH] tweak timeouts to be a bit more sane --- llarp/service/sendcontext.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llarp/service/sendcontext.hpp b/llarp/service/sendcontext.hpp index aa38cc8b0..b87d035ae 100644 --- a/llarp/service/sendcontext.hpp +++ b/llarp/service/sendcontext.hpp @@ -44,8 +44,8 @@ namespace llarp uint64_t sequenceNo = 0; llarp_time_t lastGoodSend = 0s; const llarp_time_t createdAt; - llarp_time_t sendTimeout = path::build_timeout * 2; - llarp_time_t connectTimeout = path::build_timeout * 4; + llarp_time_t sendTimeout = path::build_timeout; + llarp_time_t connectTimeout = path::build_timeout; llarp_time_t shiftTimeout = (path::build_timeout * 5) / 2; llarp_time_t estimatedRTT = 0s; bool markedBad = false;