blob: 74b4442b1a2bc79df76a64146f6975010d670c7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
.\" $OpenBSD: ERR_print_errors.3,v 1.2 2016/11/06 15:52:50 jmc Exp $
.\"
.Dd $Mdocdate: November 6 2016 $
.Dt ERR_PRINT_ERRORS 3
.Os
.Sh NAME
.Nm ERR_print_errors ,
.Nm ERR_print_errors_fp
.Nd print OpenSSL error messages
.Sh SYNOPSIS
.In openssl/err.h
.Ft void
.Fo ERR_print_errors
.Fa "BIO *bp"
.Fc
.Ft void
.Fo ERR_print_errors_fp
.Fa "FILE *fp"
.Fc
.Sh DESCRIPTION
.Fn ERR_print_errors
is a convenience function that prints the error strings for all errors
that OpenSSL has recorded to
.Fa bp ,
thus emptying the error queue.
.Pp
.Fn ERR_print_errors_fp
is the same, except that the output goes to a
.Vt FILE .
.Pp
The error strings have the following format:
.Bd -literal
[pid]:error:[error code]:[library name]:[function name]:[reason string]:
[file name]:[line]:[optional text message]
.Ed
.Pp
The error code is an 8 digit hexadecimal number.
The library name, the function name, and the reason string are ASCII
text, as is the optional text message if one was set for the
respective error code.
.Pp
If there is no text string registered for the given error code, the
error string will contain the numeric code.
.Sh RETURN VALUES
.Fn ERR_print_errors
and
.Fn ERR_print_errors_fp
return no values.
.Sh SEE ALSO
.Xr ERR 3 ,
.Xr ERR_error_string 3 ,
.Xr ERR_get_error 3 ,
.Xr ERR_load_crypto_strings 3 ,
.Xr SSL_load_error_strings 3
.Sh HISTORY
.Fn ERR_print_errors
and
.Fn ERR_print_errors_fp
are available in all versions of SSLeay and OpenSSL.
|