From cf2beafbcdb1c25c36621ab6b46647bc0c5f5224 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 30 Mar 2021 13:49:08 -0700 Subject: [PATCH] ipn/ipnlocal: on Windows peerapi bind failures, try again on link change Updates #1620 Signed-off-by: Brad Fitzpatrick --- ipn/ipnlocal/local.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ipn/ipnlocal/local.go b/ipn/ipnlocal/local.go index 86e032828..b3ddc4856 100644 --- a/ipn/ipnlocal/local.go +++ b/ipn/ipnlocal/local.go @@ -200,6 +200,14 @@ func (b *LocalBackend) linkChange(major bool, ifst *interfaces.State) { // If the local network configuration has changed, our filter may // need updating to tweak default routes. b.updateFilter(b.netMap, b.prefs) + + if runtime.GOOS == "windows" && b.netMap != nil { + want := len(b.netMap.Addresses) + b.logf("linkChange: peerAPIListeners too low; trying again") + if len(b.peerAPIListeners) < want { + go b.initPeerAPIListener() + } + } } func (b *LocalBackend) onHealthChange(sys health.Subsystem, err error) {