From d939cab6e9ad7d6cd09c91133970a0d09a01cc75 Mon Sep 17 00:00:00 2001 From: Nick Porter Date: Fri, 8 Aug 2025 11:55:22 +0100 Subject: [PATCH] Add num_ports and connections to bio_thread_t For tracking source port usage with static home servers --- src/modules/rlm_radius/bio.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/rlm_radius/bio.c b/src/modules/rlm_radius/bio.c index bab5b87748..674017fd49 100644 --- a/src/modules/rlm_radius/bio.c +++ b/src/modules/rlm_radius/bio.c @@ -56,6 +56,9 @@ typedef struct { uint32_t id; //!< for replication fr_rb_expire_t expires; //!< for proxying / client sending } bio; + + int num_ports; + connection_t **connections; } bio_thread_t; typedef struct bio_request_s bio_request_t; -- 2.47.2