ipn/ipnstate: clarify PeerStatusLite.LastHandshake

And document the other fields, as long as we're here.

Updates #1182

Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
This commit is contained in:
Josh Bleecher Snyder 2021-11-22 15:26:54 -08:00 committed by Brad Fitzpatrick
parent 0de1b74fbb
commit 027b46d0c1

View File

@ -70,8 +70,13 @@ func (s *Status) Peers() []key.NodePublic {
} }
type PeerStatusLite struct { type PeerStatusLite struct {
// TxBytes/RxBytes is the total number of bytes transmitted to/received from this peer.
TxBytes, RxBytes int64 TxBytes, RxBytes int64
// LastHandshake is the last time a handshake succeeded with this peer.
// (Or we got key confirmation via the first data message,
// which is approximately the same thing.)
LastHandshake time.Time LastHandshake time.Time
// NodeKey is this peer's public node key.
NodeKey key.NodePublic NodeKey key.NodePublic
} }