mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 08:53:05 +00:00
cb2790984f
When using running `tailscale up` in the AuthKey flow process, the tailscale client immediately enters PollMap after registration - avoiding a race condition. When using the web auth (up -> go to the Control website -> CLI `register`) the client is polling checking if it has been authorized. If we immediately ask for the client IP, as done in CreateHeadscaleEnv() we might have the client in NotReady status. This method provides a way to wait for the client to be ready. Signed-off-by: Juan Font Alonso <juanfontalonso@gmail.com>
21 lines
427 B
Go
21 lines
427 B
Go
package integration
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
"tailscale.com/ipn/ipnstate"
|
|
)
|
|
|
|
type TailscaleClient interface {
|
|
Hostname() string
|
|
Shutdown() error
|
|
Version() string
|
|
Execute(command []string) (string, error)
|
|
Up(loginServer, authKey string) error
|
|
IPs() ([]netip.Addr, error)
|
|
FQDN() (string, error)
|
|
Status() (*ipnstate.Status, error)
|
|
WaitForReady() error
|
|
WaitForPeers(expected int) error
|
|
Ping(hostnameOrIP string) error
|
|
}
|