Make hostname dns safe, allow string in ping command

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby 2022-10-21 14:07:46 +02:00
parent ecce82d44a
commit d242ceac46
No known key found for this signature in database
3 changed files with 7 additions and 7 deletions

View file

@ -14,5 +14,5 @@ type TailscaleClient interface {
IPs() ([]netip.Addr, error)
Status() (*ipnstate.Status, error)
WaitForPeers(expected int) error
Ping(ip netip.Addr) error
Ping(hostnameOrIP string) error
}