mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
17 lines
272 B
Go
17 lines
272 B
Go
|
package gateway
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"os/exec"
|
||
|
)
|
||
|
|
||
|
func DiscoverGateway() (net.IP, error) {
|
||
|
routeCmd := exec.Command("/sbin/route", "-n", "get", "0.0.0.0")
|
||
|
output, err := routeCmd.CombinedOutput()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return parseDarwinRouteGet(output)
|
||
|
}
|