1CONF_modules_free(3)                OpenSSL               CONF_modules_free(3)
2
3
4

NAME

6        CONF_modules_free, CONF_modules_finish, CONF_modules_unload -
7        OpenSSL configuration cleanup functions
8

SYNOPSIS

10        #include <openssl/conf.h>
11
12        void CONF_modules_free(void);
13        void CONF_modules_finish(void);
14        void CONF_modules_unload(int all);
15

DESCRIPTION

17       CONF_modules_free() closes down and frees up all memory allocated by
18       all configuration modules.
19
20       CONF_modules_finish() calls each configuration modules finish handler
21       to free up any configuration that module may have performed.
22
23       CONF_modules_unload() finishes and unloads configuration modules. If
24       all is set to 0 only modules loaded from DSOs will be unloads. If all
25       is 1 all modules, including builtin modules will be unloaded.
26

NOTES

28       Normally applications will only call CONF_modules_free() at application
29       to tidy up any configuration performed.
30

RETURN VALUE

32       None of the functions return a value.
33

SEE ALSO

35       conf(5), OPENSSL_config(3), CONF_modules_load_file(3)
36

HISTORY

38       CONF_modules_free(), CONF_modules_unload(), and CONF_modules_finish()
39       first appeared in OpenSSL 0.9.7.
40
41
42
431.0.2o                            2020-08-01              CONF_modules_free(3)
Impressum