mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-21 22:21:41 +00:00
wgengine/magicsock: use mak in another spot
Change-Id: I0a46d6243371ae6d126005a2bd63820cb2d1db6b Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
c72caa6672
commit
e470893ba0
@ -2130,13 +2130,11 @@ func (c *Conn) enqueueCallMeMaybe(derpAddr netip.AddrPort, de *endpoint) {
|
|||||||
|
|
||||||
if !c.lastEndpointsTime.After(time.Now().Add(-endpointsFreshEnoughDuration)) {
|
if !c.lastEndpointsTime.After(time.Now().Add(-endpointsFreshEnoughDuration)) {
|
||||||
c.logf("[v1] magicsock: want call-me-maybe but endpoints stale; restunning")
|
c.logf("[v1] magicsock: want call-me-maybe but endpoints stale; restunning")
|
||||||
if c.onEndpointRefreshed == nil {
|
|
||||||
c.onEndpointRefreshed = map[*endpoint]func(){}
|
mak.Set(&c.onEndpointRefreshed, de, func() {
|
||||||
}
|
|
||||||
c.onEndpointRefreshed[de] = func() {
|
|
||||||
c.logf("[v1] magicsock: STUN done; sending call-me-maybe to %v %v", de.discoShort, de.publicKey.ShortString())
|
c.logf("[v1] magicsock: STUN done; sending call-me-maybe to %v %v", de.discoShort, de.publicKey.ShortString())
|
||||||
c.enqueueCallMeMaybe(derpAddr, de)
|
c.enqueueCallMeMaybe(derpAddr, de)
|
||||||
}
|
})
|
||||||
// TODO(bradfitz): make a new 'reSTUNQuickly' method
|
// TODO(bradfitz): make a new 'reSTUNQuickly' method
|
||||||
// that passes down a do-a-lite-netcheck flag down to
|
// that passes down a do-a-lite-netcheck flag down to
|
||||||
// netcheck that does 1 (or 2 max) STUN queries
|
// netcheck that does 1 (or 2 max) STUN queries
|
||||||
|
Loading…
x
Reference in New Issue
Block a user