]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
More doxygen fixes
authorNick Porter <nick@portercomputing.co.uk>
Thu, 15 Feb 2024 15:47:31 +0000 (15:47 +0000)
committerNick Porter <nick@portercomputing.co.uk>
Thu, 15 Feb 2024 15:47:31 +0000 (15:47 +0000)
src/lib/unlang/call_env.c
src/lib/unlang/call_env.h
src/lib/unlang/interpret.c
src/lib/util/dict_util.c
src/modules/rlm_ldap/profile.c
src/modules/rlm_ldap/user.c
src/modules/rlm_linelog/rlm_linelog.c

index c1a5c18b1a2cfc3a50bcea3d5a2bd98995273f0c..9f4bcebb0b725562c9fb07d4a9e2a8af391ef860 100644 (file)
@@ -652,6 +652,7 @@ void call_env_parsed_free(call_env_parsed_head_t *parsed, call_env_parsed_t *ptr
  * @param[in] call_env_method  containing the call_env_pair_t to evaluate against the specified CONF_SECTION.
  * @param[in] t_rules          that control how call_env_pair_t are parsed.
  * @param[in] cs               to parse in the context of the call.
+ * @param[in] data             module / xlat instance data of the module / xlat allocating this call_env
  * @return
  *     - A new call_env_t on success.
  *     - NULL on failure.
index f6ca471acb906e33dcddd37e1295198b2a20b589..f7438ae4763f6032543e3fccd03b85e12eece0a2 100644 (file)
@@ -134,6 +134,7 @@ DIAG_ON(attributes)
  * @param[out] out             Where to write the result of parsing.
  * @param[in] t_rules          we're parsing attributes with.  Contains the default dictionary and nested 'caller' tmpl_rules_t.
  * @param[in] ci               The #CONF_SECTION or #CONF_PAIR to parse.
+ * @param[in] data             module / xlat instance data of the module / xlat allocating this call_env
  * @param[in] rule             Parse rules - How the #CONF_PAIR or #CONF_SECTION should be converted.
  * @return
  *     - 0 on success.
index 7d6e9c23dc0cf4198da7f83c63b29353d6a81a15..d330a71aa1ee46507366368e8ea36eb599104fea 100644 (file)
@@ -228,6 +228,7 @@ static int _local_variables_free(unlang_variable_ref_t *ref)
 
 /** Push the children of the current frame onto a new frame onto the stack
  *
+ * @param[out] p_result                set to RLM_MOULDE_FAIL if pushing the children fails
  * @param[in] request          to push the frame onto.
  * @param[in] default_rcode    The default result.
  * @param[in] do_next_sibling  Whether to only execute the first node in the #unlang_t program
@@ -1600,7 +1601,7 @@ static xlat_action_t unlang_interpret_xlat(TALLOC_CTX *ctx, fr_dcursor_t *out,
         */
        if (strcmp(fmt, "rcode") == 0) {
                if (fr_value_box_strdup(vb, vb, NULL, fr_table_str_by_value(rcode_table, request->rcode, "<INVALID>"), false) < 0) goto error;
-               
+
                goto finish;
        }
 
index 622ba05c95d5edd8e1e83649ec328b341f56796c..50f1f3d3d8e0dd0b99ff66e908e0c0a25f56e810 100644 (file)
@@ -3773,6 +3773,7 @@ static int _fr_dict_autoload_talloc_free(fr_dict_autoload_talloc_t const *to_fre
  *      to the dictionary are gone.
  *
  * @param[in] ctx      to bind the dictionary lifetime to.
+ * @param[out] out     pointer to the loaded dictionary.
  * @param[in] proto    to load.
  * @param[in] dependent to register this reference to.  Will be dupd.
  */
index 0983b06e514967a39863f1cdda1088dff5ea769f..1ddbddd14042f3cf4d39b53aad88e2ded228dc7f 100644 (file)
@@ -121,7 +121,9 @@ static void ldap_map_profile_cancel(UNUSED request_t *request, UNUSED fr_signal_
  * sets of attributes to the request.
  *
  * @param[out] ret             Where to write the result of the query.
+ * @param[in] inst             LDAP module instance.
  * @param[in] request          Current request.
+ * @param[in] ttrunk           Trunk connection on which to run LDAP queries.
  * @param[in] dn               of profile object to apply.
  * @param[in] scope            to apply when looking up profiles.
  * @param[in] filter           to apply when looking up profiles.
index 4292625697b21083684f55d0183dd4e8384bb401..9adf846400da1a50771e97511c2ddfd7b092a437 100644 (file)
@@ -240,6 +240,7 @@ ldap_access_state_t rlm_ldap_check_access(rlm_ldap_t const *inst, request_t *req
  * Checks to see if after the LDAP to RADIUS mapping has been completed that a reference password.
  *
  * @param[in] request          Current request.
+ * @param[in] inst_name                Name of LDAP module instance for debug messages.
  * @param[in] expect_password  Whether we should be expecting a password.
  * @param[in] ttrunk           the connection thread trunk.
  */
index 8dd0f1aa2ee9eeaeb4f9bcd2ccaa215657253171..9309445643acb6c466716c92a57fd135d54c8678 100644 (file)
@@ -320,6 +320,7 @@ static void *mod_conn_create(TALLOC_CTX *ctx, void *instance, fr_time_delta_t ti
  * - All other unprintables are escaped as @verbatim \<oct><oct><oct> @endverbatim.
  *
  * @param vb           Value box to escape.
+ * @param uctx         unused.
  */
 /*
  *     Escape unprintable characters.