void *fr_connection_reconnect(fr_connection_pool_t *pool, void *conn);
-int fr_connection_close_internal(fr_connection_pool_t *pool, void *conn);
+int fr_connection_close(fr_connection_pool_t *pool, void *conn);
#ifdef __cplusplus
}
* - 0 If the connection could not be found.
* - 1 if the connection was deleted.
*/
-int fr_connection_close_internal(fr_connection_pool_t *pool, void *conn)
+int fr_connection_close(fr_connection_pool_t *pool, void *conn)
{
fr_connection_t *this;
* Instead, we let the next caller do the rebind.
*/
if (conn->referred) {
- fr_connection_close_internal(inst->pool, conn);
+ fr_connection_close(inst->pool, conn);
return;
}