mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 04:55:31 +00:00
wgengine/magicsock: handle wireguard only clean up and log messages
This change updates log messaging when cleaning up wireguard only peers. This change also stops us unnecessarily attempting to clean up disco pings for wireguard only endpoints. Updates #7826 Signed-off-by: Charlotte Brandhorst-Satzkorn <charlotte@tailscale.com>
This commit is contained in:
parent
3269b36bd0
commit
839fee9ef4
@ -1335,7 +1335,11 @@ func (de *endpoint) stopAndReset() {
|
||||
defer de.mu.Unlock()
|
||||
|
||||
if closing := de.c.closing.Load(); !closing {
|
||||
de.c.logf("[v1] magicsock: doing cleanup for discovery key %s", de.discoShort())
|
||||
if de.isWireguardOnly {
|
||||
de.c.logf("[v1] magicsock: doing cleanup for wireguard key %s", de.publicKey.ShortString())
|
||||
} else {
|
||||
de.c.logf("[v1] magicsock: doing cleanup for discovery key %s", de.discoShort())
|
||||
}
|
||||
}
|
||||
|
||||
de.debugUpdates.Add(EndpointChange{
|
||||
@ -1359,8 +1363,10 @@ func (de *endpoint) resetLocked() {
|
||||
for _, es := range de.endpointState {
|
||||
es.lastPing = 0
|
||||
}
|
||||
for txid, sp := range de.sentPing {
|
||||
de.removeSentDiscoPingLocked(txid, sp)
|
||||
if !de.isWireguardOnly {
|
||||
for txid, sp := range de.sentPing {
|
||||
de.removeSentDiscoPingLocked(txid, sp)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user