github.com/GuanceCloud/cliutils@v1.1.21/dialtesting/traceroute_windows.go (about) 1 // Unless explicitly stated otherwise all files in this repository are licensed 2 // under the MIT License. 3 // This product includes software developed at Guance Cloud (https://www.guance.com/). 4 // Copyright 2021-present Guance, Inc. 5 6 //go:build windows 7 8 package dialtesting 9 10 // TODO. 11 func TracerouteIP(ip string, opt *TracerouteOption) (routes []*Route, err error) { 12 return []*Route{}, nil 13 }