ERR_print_errors.3ossl - Man Page

print error messages

Synopsis

 #include <openssl/err.h>

 void ERR_print_errors(BIO *bp);
 void ERR_print_errors_fp(FILE *fp);
 void ERR_print_errors_cb(int (*cb)(const char *str, size_t len, void *u),
                          void *u);

Description

ERR_print_errors() is a convenience function that prints the error strings for all errors that OpenSSL has recorded to bp, thus emptying the error queue.

ERR_print_errors_fp() is the same, except that the output goes to a FILE.

ERR_print_errors_cb() is the same, except that the callback function, cb, is called for each error line with the string, length, and userdata u as the callback parameters.

The error strings will have the following format:

 [pid]:error:[error code]:[library name]:[function name]:[reason string]:[filename]:[line]:[optional text message]

error code is an 8 digit hexadecimal number. library name, function name and reason string are ASCII text, as is optional text message if one was set for the respective error code.

If there is no text string registered for the given error code, the error string will contain the numeric code.

Return Values

ERR_print_errors() and ERR_print_errors_fp() return no values.

See Also

ERR_error_string(3), ERR_get_error(3)

Referenced By

ASYNC_start_job.3ossl(3), ERR_error_string.3ossl(3), OSSL_CMP_CTX_new.3ossl(3), ossl-guide-libraries-introduction.7ossl(7), ossl-guide-quic-client-non-block.7ossl(7), ossl-guide-tls-client-non-block.7ossl(7).

The man pages ERR_print_errors_cb.3ossl(3) and ERR_print_errors_fp.3ossl(3) are aliases of ERR_print_errors.3ossl(3).

2024-04-04 3.2.1 OpenSSL