* @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);
* 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.
* 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.
/** 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)
/** 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.