From e25b7f5ff8d99e527f9a9553b27fefdcfd258726 Mon Sep 17 00:00:00 2001 From: Alexey <247128645+axkurcom@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:10:21 +0300 Subject: [PATCH] STUN List --- src/config/defaults.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/config/defaults.rs b/src/config/defaults.rs index 04755cb..3fb8c3d 100644 --- a/src/config/defaults.rs +++ b/src/config/defaults.rs @@ -116,8 +116,19 @@ pub(crate) fn default_middle_proxy_nat_stun() -> Option { pub(crate) fn default_middle_proxy_nat_stun_servers() -> Vec { vec![ + "stun.l.google.com:5349".to_string(), + "stun1.l.google.com:3478".to_string(), + "stun.gmx.net:3478".to_string(), + "stun.l.google.com:19302".to_string(), + "stun.1und1.de:3478".to_string(), "stun1.l.google.com:19302".to_string(), "stun2.l.google.com:19302".to_string(), + "stun3.l.google.com:19302".to_string(), + "stun4.l.google.com:19302".to_string(), + "stun.services.mozilla.com:3478".to_string(), + "stun.stunprotocol.org:3478".to_string(), + "stun.nextcloud.com:3478".to_string(), + "stun.voip.eutelia.it:3478".to_string(), ] }