mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 10:05:19 +00:00
58c94d2bd3
This commit restructures the map session in to a struct holding the state of what is needed during its lifetime. For streaming sessions, the event loop is structured a bit differently not hammering the clients with updates but rather batching them over a short, configurable time which should significantly improve cpu usage, and potentially flakyness. The use of Patch updates has been dialed back a little as it does not look like its a 100% ready for prime time. Nodes are now updated with full changes, except for a few things like online status. Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
41 lines
1019 B
Go
41 lines
1019 B
Go
package integration
|
|
|
|
import (
|
|
"net/netip"
|
|
"net/url"
|
|
|
|
"github.com/juanfont/headscale/integration/dockertestutil"
|
|
"github.com/juanfont/headscale/integration/tsic"
|
|
"tailscale.com/ipn/ipnstate"
|
|
"tailscale.com/net/netcheck"
|
|
"tailscale.com/types/netmap"
|
|
)
|
|
|
|
// nolint
|
|
type TailscaleClient interface {
|
|
Hostname() string
|
|
Shutdown() error
|
|
Version() string
|
|
Execute(
|
|
command []string,
|
|
options ...dockertestutil.ExecuteCommandOption,
|
|
) (string, string, error)
|
|
Login(loginServer, authKey string) error
|
|
LoginWithURL(loginServer string) (*url.URL, error)
|
|
Logout() error
|
|
Up() error
|
|
Down() error
|
|
IPs() ([]netip.Addr, error)
|
|
FQDN() (string, error)
|
|
Status(...bool) (*ipnstate.Status, error)
|
|
Netmap() (*netmap.NetworkMap, error)
|
|
Netcheck() (*netcheck.Report, error)
|
|
WaitForNeedsLogin() error
|
|
WaitForRunning() error
|
|
WaitForPeers(expected int) error
|
|
Ping(hostnameOrIP string, opts ...tsic.PingOption) error
|
|
Curl(url string, opts ...tsic.CurlOption) (string, error)
|
|
ID() string
|
|
PrettyPeers() (string, error)
|
|
}
|