summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tlv_types.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tlv_types.c b/src/tlv_types.c
index 9b4c215..1cc1c3a 100644
--- a/src/tlv_types.c
+++ b/src/tlv_types.c
@@ -67,7 +67,10 @@ static void handle_tlv_hello(gmrf_t *gmrf, gmrf_context_t *ctx, const gp_babel_t
return;
}
- gmrf_logf(gmrf, LOG_DEBUG, "received hello with seqno %u.", ntohs(tlv_hello->seqno));
+ gmrf_logf(gmrf, LOG_DEBUG, "received hello from %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x[%s] with seqno %04x.",
+ arg->source->d[0], arg->source->d[1], arg->source->d[2], arg->source->d[3],
+ arg->source->d[4], arg->source->d[5], arg->source->d[6], arg->source->d[7],
+ gmrf_iface_get_name(gmrf, arg->iface->gmrf_iface), ntohs(tlv_hello->seqno));
gp_babel_neigh_t *neigh = get_tlv_neigh(arg);