mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 07:11:08 +00:00
c49453c519
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/2968
15 lines
224 B
Go
15 lines
224 B
Go
// +build !darwin,!linux,!windows
|
|
|
|
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
|
|
}
|