mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-20 11:55:18 +00:00
17 lines
265 B
Go
17 lines
265 B
Go
|
package gateway
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"os/exec"
|
||
|
)
|
||
|
|
||
|
func DiscoverGateway() (ip net.IP, err error) {
|
||
|
routeCmd := exec.Command("route", "print", "0.0.0.0")
|
||
|
output, err := routeCmd.CombinedOutput()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return parseRoutePrint(output)
|
||
|
}
|