From: Alan T. DeKok Date: Tue, 3 Oct 2017 18:24:36 +0000 (-0400) Subject: print when retransmit timers hit, even if there's no connection X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e05e2d3a6c435b8b5a0c950cf5c2a342d57974b5;p=thirdparty%2Ffreeradius-server.git print when retransmit timers hit, even if there's no connection --- diff --git a/src/modules/rlm_radius/rlm_radius_udp.c b/src/modules/rlm_radius/rlm_radius_udp.c index eacd1b8bb28..37a377f028a 100644 --- a/src/modules/rlm_radius/rlm_radius_udp.c +++ b/src/modules/rlm_radius/rlm_radius_udp.c @@ -1037,7 +1037,11 @@ static void response_timeout(fr_event_list_t *el, struct timeval *now, void *uct /* * Try to retransmit. */ - if (u->rr) RDEBUG("Retransmitting ID %d on connection %s", u->rr->id, c->name); + if (u->rr) { + RDEBUG("Retransmitting ID %d on connection %s", u->rr->id, c->name); + } else { + RDEBUG("No available connections for retransmission. Waiting until next timeout."); + } rcode = rr_track_retry(&u->timer, now); if (rcode < 0) {