ERR_add_error_vdata

Append additional string data to the most recent error, from a va_list.

Synopsis

Declared in <openssl/err.h>

void
ERR_add_error_vdata(
    int num,
    va_list args);

Description

Like ERR_add_error_data() but takes a va_list; total extra data per error is capped at 4096 characters.

Parameters

NameDescription
numNumber of char * arguments in args to concatenate.
argsva_list of num C strings associated with the last error code.