From: Alan T. DeKok Date: Mon, 10 Feb 2025 17:48:02 +0000 (-0500) Subject: add IP address to timer message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=feab81c284d25edff1445ce8ae0ce9a8a0ad2f8f;p=thirdparty%2Ffreeradius-server.git add IP address to timer message --- diff --git a/src/lib/io/master.c b/src/lib/io/master.c index cbc9ddb70b9..4dc7f4880ed 100644 --- a/src/lib/io/master.c +++ b/src/lib/io/master.c @@ -2022,8 +2022,6 @@ static void client_expiry_timer(fr_event_list_t *el, fr_time_t now, void *uctx) goto reset_timer; } - DEBUG("TIMER - checking status of client %s", client->radclient->shortname); - /* * It's a negative cache entry. Just delete it. */ @@ -2060,6 +2058,8 @@ static void client_expiry_timer(fr_event_list_t *el, fr_time_t now, void *uctx) return; } + DEBUG("TIMER - checking status of dynamic client %s %pV", client->radclient->shortname, fr_box_ipaddr(client->src_ipaddr)); + /* * It's a dynamically defined client. If no one is using * it, clean it up after an idle timeout.