From 98c003562023ad78b2e62f6510e1ddc3b73546e0 Mon Sep 17 00:00:00 2001 From: PobreGato <315121269+pobregat0@users.noreply.github.com> Date: Mon, 17 Aug 2026 05:01:00 +0300 Subject: [PATCH] apply tunnel parameters on reload --- libi2pd_client/ClientContext.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libi2pd_client/ClientContext.cpp b/libi2pd_client/ClientContext.cpp index 407cc6cd..fa68d59e 100644 --- a/libi2pd_client/ClientContext.cpp +++ b/libi2pd_client/ClientContext.cpp @@ -696,6 +696,14 @@ namespace client if (keys != "transient") destinations[keys] = localDestination; } + else + { + // destination is already running, the pool takes new parameters + // on the fly, no need to recreate anything + localDestination->Reconfigure (options); + if (keys != "transient") + destinations[keys] = localDestination; + } } } }