From 6592fab41cc304c61aa2091919be902c830af205 Mon Sep 17 00:00:00 2001 From: Vort Date: Wed, 24 Apr 2024 16:44:24 +0300 Subject: [PATCH] manage netDb requests more frequently --- libi2pd/NetDb.cpp | 4 ++-- libi2pd/NetDbRequests.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libi2pd/NetDb.cpp b/libi2pd/NetDb.cpp index fcfe373a..f48f1a00 100644 --- a/libi2pd/NetDb.cpp +++ b/libi2pd/NetDb.cpp @@ -114,7 +114,7 @@ namespace data { try { - auto msg = m_Queue.GetNextWithTimeout (15000); // 15 sec + auto msg = m_Queue.GetNextWithTimeout (1000); // 1 sec if (msg) { int numMsgs = 0; @@ -467,7 +467,7 @@ namespace data return; } m_FloodfillBootstrap = ri; - ReseedFromFloodfill(*ri); + //ReseedFromFloodfill(*ri); // don't try reseed servers if trying to bootstrap from floodfill return; } diff --git a/libi2pd/NetDbRequests.h b/libi2pd/NetDbRequests.h index 25c102de..c6d52b19 100644 --- a/libi2pd/NetDbRequests.h +++ b/libi2pd/NetDbRequests.h @@ -21,9 +21,9 @@ namespace i2p namespace data { const size_t MAX_NUM_REQUEST_ATTEMPTS = 7; - const uint64_t MANAGE_REQUESTS_INTERVAL = 15; // in seconds + const uint64_t MANAGE_REQUESTS_INTERVAL = 1; // in seconds const uint64_t MIN_REQUEST_TIME = 5; // in seconds - const uint64_t MAX_REQUEST_TIME = MAX_NUM_REQUEST_ATTEMPTS*MANAGE_REQUESTS_INTERVAL; + const uint64_t MAX_REQUEST_TIME = MAX_NUM_REQUEST_ATTEMPTS * (MIN_REQUEST_TIME + MANAGE_REQUESTS_INTERVAL); class RequestedDestination {