ipn: add missing locking in LocalBackend.NetMap

Looks like it's only used by tests.
reviewable/pr511/r1
Brad Fitzpatrick 4 years ago
parent 2a8e064705
commit 5bc29e7388

@ -769,6 +769,8 @@ func (b *LocalBackend) doSetHostinfoFilterServices(hi *tailcfg.Hostinfo) {
// NetMap returns the latest cached network map received from
// controlclient, or nil if no network map was received yet.
func (b *LocalBackend) NetMap() *controlclient.NetworkMap {
b.mu.Lock()
defer b.mu.Unlock()
return b.netMap
}

Loading…
Cancel
Save