]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
and rely on new fd_config.c behavior
authorAlan T. DeKok <aland@freeradius.org>
Sat, 7 Dec 2024 13:44:16 +0000 (08:44 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Sat, 7 Dec 2024 14:36:49 +0000 (09:36 -0500)
src/modules/rlm_radius2/rlm_radius.c

index e2e916dfdb7ba399b8fa15e05def4469bb09069d..94e69edb2d718f3ecd027a96fa6bcbd374e94c8b 100644 (file)
@@ -95,11 +95,6 @@ static conf_parser_t disconnect_config[] = {
 };
 
 
-static conf_parser_t const udp_config[] = {
-
-       CONF_PARSER_TERMINATOR
-};
-
 /*
  *     A mapping of configuration file names to internal variables.
  */
@@ -127,8 +122,6 @@ static conf_parser_t const module_config[] = {
 
        { FR_CONF_POINTER("status_check", 0, CONF_FLAG_SUBSECTION, NULL), .subcs = (void const *) status_check_config },
 
-       { FR_CONF_POINTER("udp", 0, CONF_FLAG_SUBSECTION, NULL), .subcs = (void const *) udp_config },
-
        { FR_CONF_OFFSET("max_attributes", rlm_radius_t, max_attributes), .dflt = STRINGIFY(RADIUS_MAX_ATTRIBUTES) },
 
        { FR_CONF_OFFSET("require_message_authenticator", rlm_radius_t, require_message_authenticator),
@@ -520,11 +513,6 @@ static int mod_instantiate(module_inst_ctx_t const *mctx)
                .proxy_state = inst->proxy_state,
        };
 
-       /*
-        *      We're always async
-        */
-       inst->fd_config.async = true;
-
        /*
         *      Allow for O(1) lookup later...
         */