From: Arran Cudbard-Bell Date: Thu, 5 Apr 2018 13:50:23 +0000 (+0100) Subject: Doxygen X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=26466808e76223c5d3b4aec6020705df2e7daf48;p=thirdparty%2Ffreeradius-server.git Doxygen --- diff --git a/src/include/unlang.h b/src/include/unlang.h index 223e0f4ee0c..47aacd50882 100644 --- a/src/include/unlang.h +++ b/src/include/unlang.h @@ -74,7 +74,6 @@ typedef void (*unlang_op_signal_t)(REQUEST *request, void *rctx, fr_state_signal * @param[in] request The current request. * @param[in] rctx A structure allocated by the initial #unlang_op_call_t to store * the result of the async execution. - * @param[in] action We're being signalled with. */ typedef void (*unlang_op_resumable_t)(REQUEST *request, void *rctx); diff --git a/src/include/xlat.h b/src/include/xlat.h index d461d02a2f4..60a5df5a9e6 100644 --- a/src/include/xlat.h +++ b/src/include/xlat.h @@ -207,7 +207,8 @@ typedef int (*xlat_thread_instantiate_t)(void *xlat_inst, void *xlat_thread_inst * Detach should close all handles associated with the xlat instance, and * free any memory allocated during instantiate. * - * @param[in] instance to free. + * @param[in] xlat_inst to free. + * @param[in] uctx passed to the xlat registration function. * @return * - 0 on success. * - -1 if detach failed. @@ -222,7 +223,8 @@ typedef int (*xlat_detach_t)(void *xlat_inst, void *uctx); * Detach should close all handles associated with the xlat instance, and * free any memory allocated during instantiate. * - * @param[in] instance to free. + * @param[in] xlat_thread_inst to free. + * @param[in] uctx passed to the xlat registration function. * @return * - 0 on success. * - -1 if detach failed. diff --git a/src/lib/tls/cache.c b/src/lib/tls/cache.c index f3696c0e572..9bf7fcd1478 100644 --- a/src/lib/tls/cache.c +++ b/src/lib/tls/cache.c @@ -81,7 +81,7 @@ static int tls_cache_session_id_to_vp(REQUEST *request, uint8_t const *key, size /** Execute the virtual server configured to perform cache actions * * @param[in] request The current request. - * @param[in] section to execute. + * @param[in] action to execute. * @return the rcode from the virtual server. */ int tls_cache_process(REQUEST *request, CONF_SECTION *action) diff --git a/src/lib/tls/session.c b/src/lib/tls/session.c index 87f93d37286..17c92a05e74 100644 --- a/src/lib/tls/session.c +++ b/src/lib/tls/session.c @@ -122,7 +122,7 @@ inline static unsigned int record_to_buff(tls_record_t *record, void *out, unsig /** Return the static private key password we have configured * * @param[out] buf Where to write the password to. - * @param[in] num The length of buf. + * @param[in] size The length of buf. * @param[in] rwflag * - 0 if password used for decryption. * - 1 if password used for encryption.