summaryrefslogtreecommitdiffstats
path: root/src/wireguard/timers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wireguard/timers.rs')
-rw-r--r--src/wireguard/timers.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wireguard/timers.rs b/src/wireguard/timers.rs
index 6b852bb..0197a9e 100644
--- a/src/wireguard/timers.rs
+++ b/src/wireguard/timers.rs
@@ -319,8 +319,8 @@ impl Timers {
let timers = peer.timers();
if timers.enabled && timers.keepalive_interval > 0 {
timers.send_keepalive.stop();
- let queued = peer.router.send_keepalive();
- log::trace!("{} : keepalive queued {}", peer, queued);
+ peer.router.send_keepalive();
+ log::trace!("{} : keepalive queued", peer);
timers
.send_persistent_keepalive
.start(Duration::from_secs(timers.keepalive_interval));