X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2Fopenssl%2Fdoc%2Fcrypto%2FERR_print_errors.pod;fp=lib%2Fopenssl%2Fdoc%2Fcrypto%2FERR_print_errors.pod;h=17229af30cb0a53a8d03376244ff06181a6488e7;hb=02ed66432c92de70694700164f986190aad3cbc5;hp=b100a5fa2b30bf62949040f52036b4b2e4d4043e;hpb=89016837dcbf2775cd15dc8cbaba00dc6379f86e;p=cassiopeia.git diff --git a/lib/openssl/doc/crypto/ERR_print_errors.pod b/lib/openssl/doc/crypto/ERR_print_errors.pod index b100a5f..17229af 100644 --- a/lib/openssl/doc/crypto/ERR_print_errors.pod +++ b/lib/openssl/doc/crypto/ERR_print_errors.pod @@ -2,7 +2,8 @@ =head1 NAME -ERR_print_errors, ERR_print_errors_fp - print error messages +ERR_print_errors, ERR_print_errors_fp, ERR_print_errors_cb +- print error messages =head1 SYNOPSIS @@ -10,6 +11,9 @@ ERR_print_errors, ERR_print_errors_fp - print error messages 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) + =head1 DESCRIPTION @@ -20,6 +24,9 @@ emptying the error queue. ERR_print_errors_fp() is the same, except that the output goes to a B. +ERR_print_errors_cb() is the same, except that the callback function, +B, is called for each error line with the string, length, and userdata +B as the callback parameters. The error strings will have the following format: @@ -38,14 +45,16 @@ ERR_print_errors() and ERR_print_errors_fp() return no values. =head1 SEE ALSO -L, L, -L, -L, -L +L, L, +L. + +=head1 COPYRIGHT -=head1 HISTORY +Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. -ERR_print_errors() and ERR_print_errors_fp() -are available in all versions of SSLeay and OpenSSL. +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +L. =cut