if (tls_session->can_pause) ASYNC_pause_job();
}
-/** Process the result of `session load { ... }`
+/** Process the result of `load session { ... }`
*/
static unlang_action_t tls_cache_load_result(UNUSED rlm_rcode_t *p_result, UNUSED int *priority,
request_t *request, void *uctx)
return UNLANG_ACTION_CALCULATE_RESULT;
}
-/** Push a `session load { ... }` call into the current request, using a subrequest
+/** Push a `load session { ... }` call into the current request, using a subrequest
*
* @param[in] request The current request.
* @param[in] tls_session The current TLS session.
return ua;
}
-/** Process the result of `session store { ... }`
+/** Process the result of `store session { ... }`
*/
static unlang_action_t tls_cache_store_result(UNUSED rlm_rcode_t *p_result, UNUSED int *priority,
request_t *request, void *uctx)
return UNLANG_ACTION_CALCULATE_RESULT;
}
-/** Push a `session store { ... }` call into the current request, using a subrequest
+/** Push a `store session { ... }` call into the current request, using a subrequest
*
* @param[in] request The current request.
* @param[in] conf TLS configuration.
return ua;
}
-/** Process the result of `session clear { ... }`
+/** Process the result of `clear session { ... }`
*/
static unlang_action_t tls_cache_clear_result(UNUSED rlm_rcode_t *p_result, UNUSED int *priority,
request_t *request, void *uctx)
return UNLANG_ACTION_CALCULATE_RESULT;
}
-/** Push a `session clear { ... }` call into the current request, using a subrequest
+/** Push a `clear session { ... }` call into the current request, using a subrequest
*
* @param[in] request The current request.
* @param[in] conf TLS configuration.
return ua;
}
-/** Push a `session store { ... }` or session clear { ... }` or `session load { ... }` depending on what operations are pending
+/** Push a `store session { ... }` or `clear session { ... }` or `load session { ... }` depending on what operations are pending
*
* @param[in] request The current request.
* @param[in] tls_session The current TLS session.