(ctx context.Context, agentID uuid.UUID)
| 44 | } |
| 45 | |
| 46 | func (c *vpnConn) Ping(ctx context.Context, agentID uuid.UUID) (time.Duration, bool, *ipnstate.PingResult, error) { |
| 47 | return c.Conn.Ping(ctx, tailnet.TailscaleServicePrefix.AddrFromUUID(agentID)) |
| 48 | } |
| 49 | |
| 50 | func (c *vpnConn) CurrentWorkspaceState() (tailnet.WorkspaceUpdate, error) { |
| 51 | return c.updatesCtrl.CurrentState() |
nothing calls this directly
no test coverage detected