Push an error onto the thread's error queue with a printf-style detail (va_list form).
Declared in <openssl/err.h>
void
ERR_vset_error(
int lib,
int reason,
char const* fmt,
va_list args);
| Name | Description |
|---|---|
| lib | Library number (ERR_LIB_*). |
| reason | Reason code within that library. |
| fmt | Optional printf-style detail format, or NULL. |
| args | Variadic arguments matching fmt. |