mirror of
https://github.com/net-byte/go-gateway.git
synced 2024-04-21 12:21:40 +00:00
17 lines
343 B
Go
17 lines
343 B
Go
//go:build !darwin && !linux && !windows && !solaris && !freebsd
|
|
// +build !darwin,!linux,!windows,!solaris,!freebsd
|
|
|
|
package gateway
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func discoverGatewayOSSpecificIPv4() (ip net.IP, err error) {
|
|
return ip, errNotImplemented
|
|
}
|
|
|
|
func discoverGatewayOSSpecificIPv6() (ip net.IP, err error) {
|
|
return ip, errNotImplemented
|
|
}
|