5 CONF_modules_free, CONF_modules_finish, CONF_modules_unload -
6 OpenSSL configuration cleanup functions
10 #include <openssl/conf.h>
12 void CONF_modules_free(void);
13 void CONF_modules_finish(void);
14 void CONF_modules_unload(int all);
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.
30 Normally applications will only call CONF_modules_free() at application to
31 tidy up any configuration performed.
35 None of the functions return a value.
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)>
44 CONF_modules_free(), CONF_modules_unload(), and CONF_modules_finish()
45 first appeared in OpenSSL 0.9.7.