From 3076698cdf8c075740d8f48b554b4b4451901897 Mon Sep 17 00:00:00 2001 From: Jordan Whited Date: Fri, 17 Jul 2026 09:17:52 -0700 Subject: [PATCH] net/packet: fix TSMPType docs Updates #cleanup Signed-off-by: Jordan Whited --- net/packet/tsmp.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net/packet/tsmp.go b/net/packet/tsmp.go index e4012d223..790181244 100644 --- a/net/packet/tsmp.go +++ b/net/packet/tsmp.go @@ -66,16 +66,16 @@ func (rh TailscaleRejectedHeader) String() string { type TSMPType uint8 const ( - // TSMPTypeRejectedConn is the type byte for a TailscaleRejectedHeader. + // TSMPTypeRejectedConn is the type byte for a [TailscaleRejectedHeader]. TSMPTypeRejectedConn TSMPType = '!' - // TSMPTypePing is the type byte for a TailscalePingRequest. + // TSMPTypePing is the type byte for a [TSMPPingRequest]. TSMPTypePing TSMPType = 'p' - // TSMPTypePong is the type byte for a TailscalePongResponse. + // TSMPTypePong is the type byte for a [TSMPPongReply]. TSMPTypePong TSMPType = 'o' - // TSPMTypeDiscoAdvertisement is the type byte for sending disco keys + // TSMPTypeDiscoAdvertisement is the type byte for a [TSMPDiscoKeyAdvertisement]. TSMPTypeDiscoAdvertisement TSMPType = 'a' )