From 779d56b818371f95ceaac59f6f0811e0aebefdda Mon Sep 17 00:00:00 2001 From: xiaoqidun Date: Thu, 22 Jan 2026 23:55:13 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=BB=98=E8=AE=A4=E5=9C=B0=E5=9D=80):=20?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=BB=98=E8=AE=A4=E7=9A=84stun=E6=9C=8D?= =?UTF-8?q?=E5=8A=A1=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- probe.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e63cd5c..f4e8663 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ probe -ip 6 probe -s5 127.0.0.1:54321 # 使用自定义服务器(STUN协议) -probe -s1 stun.voipia.net:3478 +probe -s1 stun.hot-chilli.net:3478 ``` # 授权协议 diff --git a/probe.go b/probe.go index 96c81b7..9232490 100644 --- a/probe.go +++ b/probe.go @@ -31,7 +31,7 @@ func main() { to time.Duration ) flag.StringVar(&ip, "ip", "", "协议版本") - flag.StringVar(&s1, "s1", "stun.l.google.com:19302", "主服务器") + flag.StringVar(&s1, "s1", "stun.nextcloud.com:3478", "主服务器") flag.StringVar(&s2, "s2", "", "次服务器") flag.StringVar(&s5, "s5", "", "代理地址") flag.DurationVar(&to, "to", 10*time.Second, "超时时间")