util-go/net/gateway/gateway_darwin.go

17 lines
276 B
Go
Raw Normal View History

2018-08-22 05:50:46 +00:00
package gateway
import (
"net"
"os/exec"
)
func DiscoverGateway() (ip net.IP, iface string, err error) {
routeCmd := exec.Command("netstat", "-rn")
output, err := routeCmd.CombinedOutput()
if err != nil {
return nil, "", err
}
return parseDarwinRouteGet(output)
}