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
15 lines
242 B
Go
15 lines
242 B
Go
// +build !darwin,!linux,!windows,!solaris,!freebsd
|
|
|
|
package gateway
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"runtime"
|
|
)
|
|
|
|
func DiscoverGateway() (ip net.IP, err error) {
|
|
err = fmt.Errorf("DiscoverGateway not implemented for OS %s", runtime.GOOS)
|
|
return
|
|
}
|