aboutsummaryrefslogtreecommitdiffstats
path: root/device/mobilequirks.go
blob: fc0b3863e568e895eef6777351510ef4f5035a3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2020 WireGuard LLC. All Rights Reserved.
 */

package device

func (device *Device) DisableSomeRoamingForBrokenMobileSemantics() {
	device.peers.RLock()
	for _, peer := range device.peers.keyMap {
		peer.Lock()
		defer peer.Unlock()
		peer.disableRoaming = peer.endpoint != nil
	}
	device.peers.RUnlock()
}