aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/send.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-10-19 00:26:28 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2016-10-19 17:21:42 +0900
commit4a3d43f73486afbd73f7081478fcdc08fa52bf0b (patch)
tree756368b666c11e35a8877b9e78ec336e3b7afb78 /src/send.c
parentnoise: comment/document the key swapping (diff)
downloadwireguard-monolithic-historical-4a3d43f73486afbd73f7081478fcdc08fa52bf0b.tar.xz
wireguard-monolithic-historical-4a3d43f73486afbd73f7081478fcdc08fa52bf0b.zip
debug: keep alive -> keepalive
Diffstat (limited to 'src/send.c')
-rw-r--r--src/send.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/send.c b/src/send.c
index cbff73d..36fe918 100644
--- a/src/send.c
+++ b/src/send.c
@@ -121,6 +121,7 @@ void packet_send_keepalive(struct wireguard_peer *peer)
skb_reserve(skb, DATA_PACKET_HEAD_ROOM);
skb->dev = netdev_pub(peer->device);
skb_queue_tail(&peer->tx_packet_queue, skb);
+ net_dbg_ratelimited("Sending keepalive packet to peer %Lu (%pISpfsc)\n", peer->internal_id, &peer->endpoint_addr);
}
packet_send_queue(peer);
}