| // Package gce provides a Profile for Google Compute Engine and should be |
| // used by binaries that only ever expect to be run on GCE. |
| "veyron.io/veyron/veyron/profiles" |
| "veyron.io/veyron/veyron2" |
| "veyron.io/veyron/veyron2/config" |
| "veyron.io/veyron/veyron2/ipc" |
| "veyron.io/veyron/veyron2/rt" |
| "veyron.io/veyron/veyron/profiles/internal/gce" |
| var ListenSpec = &ipc.ListenSpec{ |
| rt.RegisterProfile(&profile{}) |
| func (p *profile) Name() string { |
| func (p *profile) Runtime() string { |
| func (p *profile) Platform() *veyron2.Platform { |
| platform, _ := profiles.Platform() |
| func (p *profile) String() string { |
| return "net " + p.Platform().String() |
| func (p *profile) Init(rt veyron2.Runtime, publisher *config.Publisher) error { |
| return fmt.Errorf("GCE profile used on a non-GCE system") |
| if ip, err := gce.ExternalIPAddress(); err != nil { |
| ListenSpec.AddressChooser = func(network string, addrs []net.Addr) (net.Addr, error) { |
| return &net.IPAddr{IP: ip}, nil |