errstr.pod 957 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. =pod
  2. =head1 NAME
  3. openssl-errstr,
  4. errstr - lookup error codes
  5. =head1 SYNOPSIS
  6. B<openssl errstr error_code>
  7. =head1 DESCRIPTION
  8. Sometimes an application will not load error message and only
  9. numerical forms will be available. The B<errstr> utility can be used to
  10. display the meaning of the hex code. The hex code is the hex digits after the
  11. second colon.
  12. =head1 OPTIONS
  13. None.
  14. =head1 EXAMPLE
  15. The error code:
  16. 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107:
  17. can be displayed with:
  18. openssl errstr 2006D080
  19. to produce the error message:
  20. error:2006D080:BIO routines:BIO_new_file:no such file
  21. =head1 COPYRIGHT
  22. Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
  23. Licensed under the OpenSSL license (the "License"). You may not use
  24. this file except in compliance with the License. You can obtain a copy
  25. in the file LICENSE in the source distribution or at
  26. L<https://www.openssl.org/source/license.html>.
  27. =cut