]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
re-arrange to make bools next to each other
authorAlan T. DeKok <aland@freeradius.org>
Tue, 9 Jan 2018 15:38:47 +0000 (10:38 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 9 Jan 2018 15:38:47 +0000 (10:38 -0500)
src/modules/proto_radius/proto_radius_udp.c

index 763ae18c54f4653cf18bf0c24412379ecdaec457..7b6f7d6eea5afa36503fce572e0a5088177538c0 100644 (file)
@@ -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;