summaryrefslogtreecommitdiffstats
path: root/src/babel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/babel.c')
-rw-r--r--src/babel.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/babel.c b/src/babel.c
index 3c0e219..7842428 100644
--- a/src/babel.c
+++ b/src/babel.c
@@ -93,7 +93,11 @@ static void maintain_routes(gmrf_context_t *ctx) {
gp_babel_route_update(ctx, route);
- if (!route->nexthops) {
+ if (!route->nexthops && gp_babel_since(ctx, route->last_nexthop) > GP_BABEL_PURGE_TIMEOUT) {
+ gmrf_logf(ctx->gmrf, LOG_DEBUG, "node %04x%04x (%u, seqno=%04x): purging.",
+ ntohl(*(uint32_t*)route->node.id), ntohl(*(uint32_t*)(route->node.id+4)),
+ route->metric.metric, route->metric.seqno);
+
*cur = *next;
next = cur;
gp_babel_route_free(ctx, route);