diff options
Diffstat (limited to 'src/uapi.go')
-rw-r--r-- | src/uapi.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uapi.go b/src/uapi.go index 155f483..a67bff1 100644 --- a/src/uapi.go +++ b/src/uapi.go @@ -296,7 +296,7 @@ func ipcSetOperation(device *Device, socket *bufio.ReadWriter) *IPCError { logError.Println("Failed to get tun device status:", err) return &IPCError{Code: ipcErrorIO} } - if device.tun.isUp.Get() && !dummy { + if device.isUp.Get() && !dummy { peer.SendKeepAlive() } } |