Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / openssl / doc / crypto / ERR_load_crypto_strings.pod
blob9bdec75a4638955dd6e0e68fa301eece805daa3a
1 =pod
3 =head1 NAME
5 ERR_load_crypto_strings, SSL_load_error_strings, ERR_free_strings -
6 load and free error strings
8 =head1 SYNOPSIS
10  #include <openssl/err.h>
12  void ERR_load_crypto_strings(void);
13  void ERR_free_strings(void);
15  #include <openssl/ssl.h>
17  void SSL_load_error_strings(void);
19 =head1 DESCRIPTION
21 ERR_load_crypto_strings() registers the error strings for all
22 B<libcrypto> functions. SSL_load_error_strings() does the same,
23 but also registers the B<libssl> error strings.
25 One of these functions should be called before generating
26 textual error messages. However, this is not required when memory
27 usage is an issue.
29 ERR_free_strings() frees all previously loaded error strings.
31 =head1 RETURN VALUES
33 ERR_load_crypto_strings(), SSL_load_error_strings() and
34 ERR_free_strings() return no values.
36 =head1 SEE ALSO
38 L<err(3)|err(3)>, L<ERR_error_string(3)|ERR_error_string(3)>
40 =head1 HISTORY
42 ERR_load_error_strings(), SSL_load_error_strings() and
43 ERR_free_strings() are available in all versions of SSLeay and
44 OpenSSL.
46 =cut