Blame doc/man3/CONF_modules_free.pod

Packit c4476c
=pod
Packit c4476c
Packit c4476c
=head1 NAME
Packit c4476c
Packit c4476c
CONF_modules_free, CONF_modules_finish, CONF_modules_unload -
Packit c4476c
OpenSSL configuration cleanup functions
Packit c4476c
Packit c4476c
=head1 SYNOPSIS
Packit c4476c
Packit c4476c
 #include <openssl/conf.h>
Packit c4476c
Packit c4476c
 void CONF_modules_finish(void);
Packit c4476c
 void CONF_modules_unload(int all);
Packit c4476c
Packit c4476c
Deprecated:
Packit c4476c
Packit c4476c
 #if OPENSSL_API_COMPAT < 0x10100000L
Packit c4476c
 void CONF_modules_free(void)
Packit c4476c
 #endif
Packit c4476c
Packit c4476c
=head1 DESCRIPTION
Packit c4476c
Packit c4476c
CONF_modules_free() closes down and frees up all memory allocated by all
Packit c4476c
configuration modules.  Normally, in versions of OpenSSL prior to 1.1.0,
Packit c4476c
applications called
Packit c4476c
CONF_modules_free() at exit to tidy up any configuration performed.
Packit c4476c
Packit c4476c
CONF_modules_finish() calls each configuration modules B<finish> handler
Packit c4476c
to free up any configuration that module may have performed.
Packit c4476c
Packit c4476c
CONF_modules_unload() finishes and unloads configuration modules. If
Packit c4476c
B<all> is set to B<0> only modules loaded from DSOs will be unloads. If
Packit c4476c
B<all> is B<1> all modules, including builtin modules will be unloaded.
Packit c4476c
Packit c4476c
=head1 RETURN VALUES
Packit c4476c
Packit c4476c
None of the functions return a value.
Packit c4476c
Packit c4476c
=head1 SEE ALSO
Packit c4476c
Packit c4476c
L<config(5)>, L<OPENSSL_config(3)>,
Packit c4476c
L<CONF_modules_load_file(3)>
Packit c4476c
Packit c4476c
=head1 HISTORY
Packit c4476c
Packit c4476c
CONF_modules_free() was deprecated in OpenSSL 1.1.0; do not use it.
Packit c4476c
For more information see L<OPENSSL_init_crypto(3)>.
Packit c4476c
Packit c4476c
=head1 COPYRIGHT
Packit c4476c
Packit c4476c
Copyright 2004-2018 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
Packit c4476c
Licensed under the OpenSSL license (the "License").  You may not use
Packit c4476c
this file except in compliance with the License.  You can obtain a copy
Packit c4476c
in the file LICENSE in the source distribution or at
Packit c4476c
L<https://www.openssl.org/source/license.html>.
Packit c4476c
Packit c4476c
=cut