Import OpenSSL-0.9.8i.
[dragonfly.git] / crypto / openssl-0.9.7d / doc / crypto / CONF_modules_free.pod
blobaf8ae6a5c92dbce56e7d8e34e0ab73bfa1998438
1 =pod
3 =head1 NAME
5  CONF_modules_free, CONF_modules_load, CONF_modules_unload -
6  OpenSSL configuration cleanup functions
8 =head1 SYNOPSIS
10  #include <openssl/conf.h>
12  void CONF_modules_free(void);
13  void CONF_modules_unload(int all);
14  void CONF_modules_finish(void);
16 =head1 DESCRIPTION
18 CONF_modules_free() closes down and frees up all memory allocated by all
19 configuration modules.
21 CONF_modules_finish() calls each configuration modules B<finish> handler
22 to free up any configuration that module may have performed.
24 CONF_modules_unload() finishes and unloads configuration modules. If
25 B<all> is set to B<0> only modules loaded from DSOs will be unloads. If
26 B<all> is B<1> all modules, including builtin modules will be unloaded.
28 =head1 NOTES
30 Normally applications will only call CONF_modules_free() at application to
31 tidy up any configuration performed.
33 =head1 RETURN VALUE
35 None of the functions return a value.
37 =head1 SEE ALSO
39 L<conf(5)|conf(5)>, L<OPENSSL_config(3)|OPENSSL_config(3)>,
40 L<CONF_modules_load_file(3), CONF_modules_load_file(3)>
42 =head1 HISTORY
44 CONF_modules_free(), CONF_modules_unload(), and CONF_modules_finish()
45 first appeared in OpenSSL 0.9.7.
47 =cut