Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
ERR_put_error, ERR_add_error_data, ERR_add_error_vdata — record an OpenSSL errorSYNOPSIS
#include <openssl/err.h>ERR_put_error(int lib, int func, int reason, const char *file, int line);
ERR_add_error_data(int num, ...);
ERR_add_error_vdata(int num, va_list arg);
DESCRIPTION
ERR_put_error() adds an error code to the thread's error queue. It signals that the error of reason code reason occurred in function func of library lib, in line number line of file. This function is usually called by a macro.SSLerr(SSL_F_SSL23_READ, SSL_R_SSL_HANDSHAKE_FAILURE);