mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-31 04:57:45 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			522 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			522 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package integration
 | |
| 
 | |
| import (
 | |
| 	"net/netip"
 | |
| 	"net/url"
 | |
| 
 | |
| 	"tailscale.com/ipn/ipnstate"
 | |
| )
 | |
| 
 | |
| //nolint
 | |
| 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
 | |
| 	ID() string
 | |
| }
 |