summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sysdep/unix/wg_user.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdep/unix/wg_user.c b/sysdep/unix/wg_user.c
index 54ab2333..4668b2c6 100644
--- a/sysdep/unix/wg_user.c
+++ b/sysdep/unix/wg_user.c
@@ -34,17 +34,17 @@ bool wg_has_userspace(const char *ifname)
/* NULL=receiving turned off, returns 1 to clear rx buffer */
static
-int user_rx_hook(struct birdsock *sk UNUSED, uint size)
+int user_rx_hook(struct birdsock *sk UNUSED, uint size UNUSED)
{
- DBG(L_TRACE "WG: RX %d", size);
+ DBG(L_TRACE "WG: RX %p %d", sk, size);
rfree(sk);
return 1;
}
static
-void user_tx_hook(struct birdsock *bs UNUSED)
+void user_tx_hook(struct birdsock *bs)
{
- DBG(L_TRACE "WG: TX");
+ DBG(L_TRACE "WG: TX %p %d", bs, bs->tpos - bs->ttx);
}
/* errno or zero if EOF */
@@ -54,7 +54,7 @@ void user_err_hook(struct birdsock *bs, int err)
/* if (err == 0) */
/* return; */
- log(L_TRACE "WG: ERR %d %s", err, bs->err);
+ log(L_TRACE "WG: ERR %p %d %s", bs, err, bs->err);
if (bs->fd >= 0)
close(bs->fd);
bs->fd = -1;