소스 검색

fix: Update default stun servers

Bruce Wayne 2 년 전
부모
커밋
0982afb150
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      NatTypeTester.ViewModels/MainWindowViewModel.cs

+ 2 - 3
NatTypeTester.ViewModels/MainWindowViewModel.cs

@@ -22,10 +22,9 @@ public class MainWindowViewModel : ViewModelBase, IScreen
 	private readonly IEnumerable<string> _defaultServers = new HashSet<string>
 	{
 		@"stun.syncthing.net",
-		@"stun.qq.com",
+		@"stunserver.stunprotocol.org",
 		@"stun.miwifi.com",
-		@"stun.bige0.com",
-		@"stun.stunprotocol.org"
+		@"stun.qq.com"
 	};
 
 	private SourceList<string> List { get; } = new();