]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
WS
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 5 May 2025 23:12:57 +0000 (17:12 -0600)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 6 May 2025 17:56:02 +0000 (11:56 -0600)
src/lib/server/virtual_servers.c

index 6692c748cf50707f46bd8afd8a994b78414ec964..5550a4eb5c8fe8081ed6b97bbb61c458a9fd3061 100644 (file)
@@ -39,25 +39,25 @@ RCSID("$Id$")
 #include <freeradius-devel/io/listen.h>
 
 typedef struct {
-       module_instance_t               *proto_mi;              //!< The proto_* module for a listen section.
-       fr_app_t const                  *proto_module;          //!< Public interface to the proto_mi.
-                                                               ///< cached for convenience.
+       module_instance_t               *proto_mi;                      //!< The proto_* module for a listen section.
+       fr_app_t const                  *proto_module;                  //!< Public interface to the proto_mi.
+                                                                       ///< cached for convenience.
 } virtual_server_listen_t;
 
 struct virtual_server_s {
-       CONF_SECTION                    *server_cs;             //!< The server section.
-       virtual_server_listen_t         **listeners;            //!< Listeners in this virtual server.
+       CONF_SECTION                    *server_cs;                     //!< The server section.
+       virtual_server_listen_t         **listeners;                    //!< Listeners in this virtual server.
 
-       module_instance_t               *process_mi;            //!< The process_* module for a virtual server.
-                                                               ///< Contains the dictionary used by the virtual
-                                                               ///< server and the entry point for the state machine.
-       fr_process_module_t const       *process_module;        //!< Public interface to the process_mi.
-                                                               ///< cached for convenience.
+       module_instance_t               *process_mi;                    //!< The process_* module for a virtual server.
+                                                                       ///< Contains the dictionary used by the virtual
+                                                                       ///< server and the entry point for the state machine.
+       fr_process_module_t const       *process_module;                //!< Public interface to the process_mi.
+                                                                       ///< cached for convenience.
 
-       fr_rb_tree_t                    *sections;              //!< List of sections that need to be compiled.
+       fr_rb_tree_t                    *sections;                      //!< List of sections that need to be compiled.
 
-       fr_log_t                        *log;                   //!< log destination
-       char const                      *log_name;              //!< name of log destination
+       fr_log_t                        *log;                           //!< log destination
+       char const                      *log_name;                      //!< name of log destination
 
        fr_time_delta_t                 timeout_delay;          //!< for timeout sections
        void                            *timeout_instruction;   //!< the timeout instruction