Files
wireguard-go/device/mobilequirks.go
T

20 lines
560 B
Go
Raw Normal View History

/* SPDX-License-Identifier: MIT
*
2021-01-28 17:52:15 +01:00
* Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved.
*/
package device
// DisableSomeRoamingForBrokenMobileSemantics should ideally be called before peers are created,
// though it will try to deal with it, and race maybe, if called after.
func (device *Device) DisableSomeRoamingForBrokenMobileSemantics() {
device.net.brokenRoaming = true
device.peers.RLock()
for _, peer := range device.peers.keyMap {
peer.Lock()
peer.disableRoaming = peer.endpoint != nil
2021-04-12 16:19:35 -06:00
peer.Unlock()
}
device.peers.RUnlock()
2020-11-06 18:01:09 +01:00
}