aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/jackpal/gateway/gateway_unimplemented.go
blob: 35042b910d6a9b5d8253c50f9ca2e28bad154aa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// +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
}