summaryrefslogtreecommitdiff
path: root/zebra/zebra_router.h
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2025-03-16 18:43:25 -0400
committerDonald Sharp <sharpd@nvidia.com>2025-03-19 13:43:00 -0400
commit4d6f5c7e27b231b7bb4a8a2a10d80f08c63cbd42 (patch)
treef4979d951c60621e6374ee2e498bea8d3b1905ad /zebra/zebra_router.h
parent24d293277f9e34c57605c7e62aa9658abf617063 (diff)
zebra: Rework the stale client list to a typesafe list
The stale client list was just a linked list, let's use the typesafe list. Signed-off-by: Donald Sharp <donaldsharp72@gmail.com>
Diffstat (limited to 'zebra/zebra_router.h')
-rw-r--r--zebra/zebra_router.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_router.h b/zebra/zebra_router.h
index e0f492b36b..597d3f4572 100644
--- a/zebra/zebra_router.h
+++ b/zebra/zebra_router.h
@@ -129,7 +129,7 @@ struct zebra_router {
struct zserv_client_list_head client_list;
/* List of clients in GR */
- struct list *stale_client_list;
+ struct zserv_stale_client_list_head stale_client_list;
struct zebra_router_table_head tables;