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) }