From bc5a370f3bfaddc3c57141d796bb4b7e8c528eb4 Mon Sep 17 00:00:00 2001 From: tsosunchia <59512455+tsosunchia@users.noreply.github.com> Date: Sat, 26 Jul 2025 20:40:20 +0800 Subject: [PATCH] =?UTF-8?q?fix=20bug:=20=E4=B8=89=E7=BD=91=E5=BF=AB?= =?UTF-8?q?=E9=80=9F=E6=B5=8B=E8=AF=95=E9=80=89=E7=9A=84=E5=B9=BF=E5=B7=9E?= =?UTF-8?q?/=E4=B8=8A=E6=B5=B7=EF=BC=8C=E7=BB=93=E6=9E=9C=E6=B5=8B?= =?UTF-8?q?=E7=9A=84=E6=98=AF=E5=8C=97=E4=BA=AC=E7=9A=84=20https://github.?= =?UTF-8?q?com/nxtrace/NTrace-core/issues/313?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: tsosunchia <59512455+tsosunchia@users.noreply.github.com> --- fast_trace/fast_trace ipv6.go | 12 ++++++------ fast_trace/fast_trace.go | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/fast_trace/fast_trace ipv6.go b/fast_trace/fast_trace ipv6.go index 15c9a71..442c815 100644 --- a/fast_trace/fast_trace ipv6.go +++ b/fast_trace/fast_trace ipv6.go @@ -125,15 +125,15 @@ func (f *FastTracer) testFastBJ_v6() { } func (f *FastTracer) testFastSH_v6() { - f.tracert_v6(TestIPsCollection.Shanghai.Location, TestIPsCollection.Beijing.CT163) - f.tracert_v6(TestIPsCollection.Shanghai.Location, TestIPsCollection.Beijing.CU169) - f.tracert_v6(TestIPsCollection.Shanghai.Location, TestIPsCollection.Beijing.CM) + f.tracert_v6(TestIPsCollection.Shanghai.Location, TestIPsCollection.Shanghai.CT163) + f.tracert_v6(TestIPsCollection.Shanghai.Location, TestIPsCollection.Shanghai.CU169) + f.tracert_v6(TestIPsCollection.Shanghai.Location, TestIPsCollection.Shanghai.CM) } func (f *FastTracer) testFastGZ_v6() { - f.tracert_v6(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Beijing.CT163) - f.tracert_v6(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Beijing.CU169) - f.tracert_v6(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Beijing.CM) + f.tracert_v6(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Guangzhou.CT163) + f.tracert_v6(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Guangzhou.CU169) + f.tracert_v6(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Guangzhou.CM) } func FastTestv6(traceMode trace.Method, outEnable bool, paramsFastTrace ParamsFastTrace) { diff --git a/fast_trace/fast_trace.go b/fast_trace/fast_trace.go index f9e8cd9..4122035 100644 --- a/fast_trace/fast_trace.go +++ b/fast_trace/fast_trace.go @@ -443,13 +443,13 @@ func (f *FastTracer) testFastBJ() { } func (f *FastTracer) testFastSH() { - f.tracert(TestIPsCollection.Shanghai.Location, TestIPsCollection.Beijing.CT163) - f.tracert(TestIPsCollection.Shanghai.Location, TestIPsCollection.Beijing.CU169) - f.tracert(TestIPsCollection.Shanghai.Location, TestIPsCollection.Beijing.CM) + f.tracert(TestIPsCollection.Shanghai.Location, TestIPsCollection.Shanghai.CT163) + f.tracert(TestIPsCollection.Shanghai.Location, TestIPsCollection.Shanghai.CU169) + f.tracert(TestIPsCollection.Shanghai.Location, TestIPsCollection.Shanghai.CM) } func (f *FastTracer) testFastGZ() { - f.tracert(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Beijing.CT163) - f.tracert(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Beijing.CU169) - f.tracert(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Beijing.CM) + f.tracert(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Guangzhou.CT163) + f.tracert(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Guangzhou.CU169) + f.tracert(TestIPsCollection.Guangzhou.Location, TestIPsCollection.Guangzhou.CM) }