ipn/ipnlocal: add Expired to PeerStatus

Needed for clients that get information via the /v0/status LocalAPI
endpoint (e.g. to not offer expired exit nodes as options).

Updates tailscale/corp#8702

Signed-off-by: Mihai Parparita <mihai@tailscale.com>
This commit is contained in:
Mihai Parparita
2023-01-13 15:41:11 -08:00
committed by Mihai Parparita
parent f011a0923a
commit 67f82e62a1
2 changed files with 12 additions and 0 deletions

View File

@@ -715,6 +715,10 @@ func peerStatusFromNode(ps *ipnstate.PeerStatus, n *tailcfg.Node) {
v := views.IPPrefixSliceOf(n.PrimaryRoutes)
ps.PrimaryRoutes = &v
}
if n.Expired {
ps.Expired = true
}
}
// WhoIs reports the node and user who owns the node with the given IP:port.