struct fr_pool_connection {
fr_pool_connection_t *prev; //!< Previous connection in list.
fr_pool_connection_t *next; //!< Next connection in list.
+ size_t heap_id; //!< For the next connection heap.
time_t created; //!< Time connection was created.
struct timeval last_reserved; //!< Last time the connection was reserved.
//!< handle.
bool in_use; //!< Whether the connection is currently reserved.
- int heap; //!< For the next connection heap.
-
bool needs_reconnecting; //!< Reconnect this connection before use.
#ifdef PTHREAD_DEBUG