From 685c228190781788a533075744d0be81e3778347 Mon Sep 17 00:00:00 2001 From: Alexey <247128645+axkurcom@users.noreply.github.com> Date: Mon, 16 Feb 2026 15:16:26 +0300 Subject: [PATCH] Update main.rs --- src/main.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 882ecdb..d64caba 100644 --- a/src/main.rs +++ b/src/main.rs @@ -250,15 +250,13 @@ async fn main() -> std::result::Result<(), Box> { info!( local_ip = %probe.local_addr.ip(), reflected_ip = %probe.reflected_addr.ip(), - "STUN detected public address" + "STUN Autodetect:" ); if probe.local_addr.ip() != probe.reflected_addr.ip() && !config.general.stun_iface_mismatch_ignore { warn!( - local_ip = %probe.local_addr.ip(), - reflected_ip = %probe.reflected_addr.ip(), - "STUN/interface IP mismatch; falling back to direct DC (set stun_iface_mismatch_ignore=true to force Middle Proxy)" + "STUN/IP-on-Interface mismatch -> fallback to direct-DC" ); use_middle_proxy = false; }