blob: 727e1717d9411559c7fa5992af55b0e1c7496588 [file] [log] [blame]
// +build !linux
package internal
import (
"net"
"v.io/x/lib/vlog"
)
// GCEPublicAddress returns the public IP address of the GCE instance
// it is run from, or nil if run from anywhere else. The returned address
// is the public address of a 1:1 NAT tunnel to this host.
func GCEPublicAddress(vlog.Logger) *net.IPAddr {
return nil
}