mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-21 14:11:56 +00:00
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:
parent
0de1b74fbb
commit
027b46d0c1
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user