wgengine/magicsock: avoid log spam from ReceiveFunc on shutdown

The new logging in 2dd71e64ac is spammy at shutdown:

    Receive func ReceiveIPv6 exiting with error: *net.OpError, read udp [::]:38869: raw-read udp6 [::]:38869: use of closed network connection
    Receive func ReceiveIPv4 exiting with error: *net.OpError, read udp 0.0.0.0:36123: raw-read udp4 0.0.0.0:36123: use of closed network connection

Skip it if we're in the process of shutting down.

Updates #10976

Change-Id: I4f6d1c68465557eb9ffe335d43d740e499ba9786
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
fran/fix-appc-routes
Brad Fitzpatrick 2 months ago committed by Brad Fitzpatrick
parent 09ec2f39b5
commit 6f694da912

@ -1299,7 +1299,7 @@ func (c *Conn) mkReceiveFunc(ruc *RebindingUDPConn, healthItem *health.ReceiveFu
healthItem.Enter()
defer healthItem.Exit()
defer func() {
if retErr != nil {
if retErr != nil && !c.closing.Load() {
c.logf("Receive func %s exiting with error: %T, %v", healthItem.Name(), retErr, retErr)
}
}()

Loading…
Cancel
Save