]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Doxygen
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 5 Apr 2018 13:50:23 +0000 (14:50 +0100)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 5 Apr 2018 13:50:46 +0000 (14:50 +0100)
src/include/unlang.h
src/include/xlat.h
src/lib/tls/cache.c
src/lib/tls/session.c

index 223e0f4ee0c71361d8cb5d13b6959a6362ffe6f3..47aacd508822110794fc76f007c06cfdcb777a62 100644 (file)
@@ -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);
 
index d461d02a2f48bcfbc971325ba0d04ca0148d6eed..60a5df5a9e68e7bd23b2137b969b21eaaeff4c22 100644 (file)
@@ -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.
index f3696c0e572fdbb98101eaad3f49b21730910fa8..9bf7fcd14788268aff9a49a5ac07cd1c25564674 100644 (file)
@@ -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)
index 87f93d372862e8850204989ae3e59b09f07baa6c..17c92a05e74a04042bbacfd2fa49addbb7bf53ec 100644 (file)
@@ -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.