We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In gateway_common.go:
func parseWindowsRoutePrint(output []byte) (net.IP, error) { lines := strings.Split(string(output), "\n") for idx, line := range lines { if strings.HasPrefix(line, "Active Routes:") { if len(lines) <= idx+2 { return nil, errNoGateway } ...
If default language is non-English, "Active Routes" will be translated.
The text was updated successfully, but these errors were encountered:
same problem
Sorry, something went wrong.
Here is the typical output of the route command on Windows 10 configured with French locale:
route
IPv4 Table de routage =========================================================================== Itinéraires actifs : Destination réseau Masque réseau Adr. passerelle Adr. interface Métrique 0.0.0.0 0.0.0.0 192.168.8.1 192.168.8.101 35 ===========================================================================
10816db
No branches or pull requests
In gateway_common.go:
If default language is non-English, "Active Routes" will be translated.
The text was updated successfully, but these errors were encountered: