Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / apps / errstr.pod
blobb3c6ccfc9cbd7072eb2606c6ff0982a533cc00be
1 =pod
3 =head1 NAME
5 errstr - lookup error codes
7 =head1 SYNOPSIS
9 B<openssl errstr error_code>
11 =head1 DESCRIPTION
13 Sometimes an application will not load error message and only
14 numerical forms will be available. The B<errstr> utility can be used to 
15 display the meaning of the hex code. The hex code is the hex digits after the
16 second colon.
18 =head1 EXAMPLE
20 The error code:
22  27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107:
24 can be displayed with:
26  openssl errstr 2006D080
28 to produce the error message:
30  error:2006D080:BIO routines:BIO_new_file:no such file
32 =head1 SEE ALSO
34 L<err(3)|err(3)>,
35 L<ERR_load_crypto_strings(3)|ERR_load_crypto_strings(3)>,
36 L<SSL_load_error_strings(3)|SSL_load_error_strings(3)>
39 =cut