mirror of
https://github.com/juanfont/headscale.git
synced 2025-11-09 05:34:51 -05:00
make TailscaleClient interface
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
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
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user