From 3643a46a0c440826c0a79073a89a1bdc101d4597 Mon Sep 17 00:00:00 2001 From: orignal Date: Thu, 17 Mar 2022 14:47:00 -0400 Subject: [PATCH] don't update SSU2 port --- libi2pd/RouterContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd/RouterContext.cpp b/libi2pd/RouterContext.cpp index 45278cf0..0c90872c 100644 --- a/libi2pd/RouterContext.cpp +++ b/libi2pd/RouterContext.cpp @@ -256,7 +256,7 @@ namespace i2p bool updated = false; for (auto& address : m_RouterInfo.GetAddresses ()) { - if (!address->IsNTCP2 () && address->port != port) + if (!address->IsNTCP2 () && !address->IsSSU2 () && address->port != port) { address->port = port; updated = true;