2020-10-07 08:17:48 +00:00
|
|
|
/* 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()
|
2020-11-06 17:01:09 +00:00
|
|
|
}
|