mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 08:53:05 +00:00
make TailscaleClient interface
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
9c16d5e511
commit
8c4744acd9
1 changed files with 18 additions and 0 deletions
18
integration/tailscale.go
Normal file
18
integration/tailscale.go
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
package integration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/netip"
|
||||||
|
|
||||||
|
"tailscale.com/ipn/ipnstate"
|
||||||
|
)
|
||||||
|
|
||||||
|
type TailscaleClient interface {
|
||||||
|
Hostname() string
|
||||||
|
Shutdown() error
|
||||||
|
Version() string
|
||||||
|
Up(loginServer, authKey string) error
|
||||||
|
IPs() ([]netip.Addr, error)
|
||||||
|
Status() (*ipnstate.Status, error)
|
||||||
|
WaitForPeers(expected int) error
|
||||||
|
Ping(ip netip.Addr) error
|
||||||
|
}
|
Loading…
Reference in a new issue