diff options
-rw-r--r-- | device.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -138,6 +138,9 @@ func deviceUpdateState(device *Device) { device.peers.RLock() for _, peer := range device.peers.keyMap { peer.Start() + if peer.persistentKeepaliveInterval > 0 { + peer.SendKeepalive() + } } device.peers.RUnlock() |