From: Alan T. DeKok Date: Tue, 9 Jan 2018 15:38:47 +0000 (-0500) Subject: re-arrange to make bools next to each other X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4358e5a87dc8b2bfe5793f73d5fe825e820d56bb;p=thirdparty%2Ffreeradius-server.git re-arrange to make bools next to each other --- diff --git a/src/modules/proto_radius/proto_radius_udp.c b/src/modules/proto_radius/proto_radius_udp.c index 763ae18c54f..7b6f7d6eea5 100644 --- a/src/modules/proto_radius/proto_radius_udp.c +++ b/src/modules/proto_radius/proto_radius_udp.c @@ -85,17 +85,17 @@ typedef struct { uint16_t port; //!< Port to listen on. uint32_t recv_buff; //!< How big the kernel's receive buffer should be. - bool recv_buff_is_set; //!< Whether we were provided with a receive - //!< buffer value. fr_tracking_t *ft; //!< tracking table uint32_t cleanup_delay; //!< cleanup delay for Access-Request packets fr_stats_t stats; //!< statistics for this socket - bool dynamic_clients_is_set; //!< set if we have dynamic clients dynamic_client_t dynamic_clients; //!< dynamic client infromation + bool dynamic_clients_is_set; //!< set if we have dynamic clients + bool recv_buff_is_set; //!< Whether we were provided with a receive + //!< buffer value. uint32_t priorities[FR_MAX_PACKET_CODE]; //!< priorities for individual packets } proto_radius_udp_t;