You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package zones
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/netip"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (m *Machine) lookupNetIP() ([]netip.Addr, error) {
|
|
|
|
timeout := 2 * time.Second
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
|
|
|
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
return m.zone.zones.resolver.LookupNetIP(ctx, "ip", m.FullName())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Machine) updatePublicAddresses() error {
|
|
|
|
addrs, err := m.lookupNetIP()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.PublicAddresses = addrs
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Machine) scan() error {
|
|
|
|
return m.updatePublicAddresses()
|
|
|
|
}
|