mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-06 05:17:49 +00:00
6a67921e40
It now includes all the fixes GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3246
17 lines
261 B
Go
17 lines
261 B
Go
package gateway
|
|
|
|
import (
|
|
"net"
|
|
"os/exec"
|
|
)
|
|
|
|
func DiscoverGateway() (ip net.IP, err error) {
|
|
routeCmd := exec.Command("netstat", "-rn")
|
|
output, err := routeCmd.CombinedOutput()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return parseBSDSolarisNetstat(output)
|
|
}
|