mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-20 11:55:18 +00:00
f6cc344623
Switch to my forked version which contains a fix for this issue. I'll track upstream in the future if things update there, and attempt to contribute back fixes... GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3149
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
|
|
}
|