mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-13 11:09:10 +08:00
23 lines
500 B
Go
23 lines
500 B
Go
package integration
|
|
|
|
import (
|
|
"net/netip"
|
|
"net/url"
|
|
|
|
"tailscale.com/ipn/ipnstate"
|
|
)
|
|
|
|
type TailscaleClient interface {
|
|
Hostname() string
|
|
Shutdown() error
|
|
Version() string
|
|
Execute(command []string) (string, string, error)
|
|
Up(loginServer, authKey string) error
|
|
UpWithLoginURL(loginServer string) (*url.URL, error)
|
|
IPs() ([]netip.Addr, error)
|
|
FQDN() (string, error)
|
|
Status() (*ipnstate.Status, error)
|
|
WaitForReady() error
|
|
WaitForPeers(expected int) error
|
|
Ping(hostnameOrIP string) error
|
|
}
|