Files
wireguard-go/device/mobilequirks.go
T

17 lines
358 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
func (device *Device) DisableSomeRoamingForBrokenMobileSemantics() {
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
}