Commit 6d2c73f1 6d2c73f1b27e6861d6b1fc2d3a15f8a8b8d771ca by Sergey Poznyakoff

(mu_auth_radius_module): New module

(MU_AUTH_REGISTER_ALL_MODULES): Register radius
1 parent 951daed6
......@@ -93,6 +93,7 @@ extern struct mu_auth_module mu_auth_generic_module;
extern struct mu_auth_module mu_auth_pam_module;
extern struct mu_auth_module mu_auth_sql_module;
extern struct mu_auth_module mu_auth_virtual_module;
extern struct mu_auth_module mu_auth_radius_module;
#define MU_AUTH_REGISTER_ALL_MODULES() do {\
mu_auth_register_module (&mu_auth_generic_module); \
......@@ -100,6 +101,7 @@ extern struct mu_auth_module mu_auth_virtual_module;
mu_auth_register_module (&mu_auth_pam_module);\
mu_auth_register_module (&mu_auth_sql_module);\
mu_auth_register_module (&mu_auth_virtual_module);\
mu_auth_register_module (&mu_auth_radius_module);\
mu_auth_init (); } while (0)
#endif
......