From: Arran Cudbard-Bell Date: Fri, 6 Mar 2020 23:42:51 +0000 (-0600) Subject: trunk: Document fail_bound X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=deda3ef44b3a77dc73bb73320a09d2691ac0d5e9;p=thirdparty%2Ffreeradius-server.git trunk: Document fail_bound --- diff --git a/src/lib/server/trunk.c b/src/lib/server/trunk.c index 053e15da6ab..19e410b584f 100644 --- a/src/lib/server/trunk.c +++ b/src/lib/server/trunk.c @@ -1453,9 +1453,11 @@ static uint64_t trunk_connection_requests_requeue(fr_trunk_connection_t *tconn, * clean up a connection in this state when it's run on re-queue, and then the caller * may try and access a now freed connection. * - * @param[in] tconn to move requests off of. - * @param[in] states Only move requests in this state. - * @param[in] max The maximum number of requests to dequeue. 0 for unlimited. + * @param[in] tconn to move requests off of. + * @param[in] states Only move requests in this state. + * @param[in] max The maximum number of requests to dequeue. 0 for unlimited. + * @param[in] fail_bound If true causes any requests bound to the connection to fail. + * If false bound requests will not be moved. * @return The number of requests requeued. */ uint64_t fr_trunk_connection_requests_requeue(fr_trunk_connection_t *tconn, int states, uint64_t max, bool fail_bound)