(ips []netip.Prefix)
| 496 | } |
| 497 | |
| 498 | func (c *Conn) SetAddresses(ips []netip.Prefix) error { |
| 499 | c.configMaps.setAddresses(ips) |
| 500 | c.nodeUpdater.setAddresses(ips) |
| 501 | return nil |
| 502 | } |
| 503 | |
| 504 | // SetDNSHosts replaces the map of DNS hosts for the connection. |
| 505 | func (c *Conn) SetDNSHosts(hosts map[dnsname.FQDN][]netip.Addr) error { |
no test coverage detected