mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			332 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			332 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 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
 | |
| }
 |