diff options
author | schwarze <> | 2015-11-11 21:15:15 +0000 |
---|---|---|
committer | schwarze <> | 2015-11-11 21:15:15 +0000 |
commit | a221ac3c250654f840fbbc40b377567a6a36d33c (patch) | |
tree | df165a08270ef8df757ccda21dbd1c609633bd3f /src/lib/libcrypto/man/CONF_modules_free.3 | |
parent | 010da91741722964cdcf5787d97f6abffb58aabc (diff) | |
download | openbsd-a221ac3c250654f840fbbc40b377567a6a36d33c.tar.gz openbsd-a221ac3c250654f840fbbc40b377567a6a36d33c.tar.bz2 openbsd-a221ac3c250654f840fbbc40b377567a6a36d33c.zip |
Convert five more manuals from POD to mdoc.
I found drafts of these in my tree, probably originally from
Max Fillinger, that just needed minor polishing.
Diffstat (limited to 'src/lib/libcrypto/man/CONF_modules_free.3')
-rw-r--r-- | src/lib/libcrypto/man/CONF_modules_free.3 | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/CONF_modules_free.3 b/src/lib/libcrypto/man/CONF_modules_free.3 new file mode 100644 index 0000000000..b09989d664 --- /dev/null +++ b/src/lib/libcrypto/man/CONF_modules_free.3 | |||
@@ -0,0 +1,56 @@ | |||
1 | .Dd $Mdocdate: November 11 2015 $ | ||
2 | .Dt CONF_MODULES_FREE 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm CONF_modules_free , | ||
6 | .Nm CONF_modules_finish , | ||
7 | .Nm CONF_modules_unload | ||
8 | .Nd OpenSSL configuration cleanup functions | ||
9 | .Sh SYNOPSIS | ||
10 | .In openssl/conf.h | ||
11 | .Ft void | ||
12 | .Fo CONF_modules_free | ||
13 | .Fa void | ||
14 | .Fc | ||
15 | .Ft void | ||
16 | .Fo CONF_modules_finish | ||
17 | .Fa void | ||
18 | .Fc | ||
19 | .Ft void | ||
20 | .Fo CONF_modules_unload | ||
21 | .Fa "int all" | ||
22 | .Fc | ||
23 | .Sh DESCRIPTION | ||
24 | .Fn CONF_modules_free | ||
25 | closes down and frees up all memory allocated by all configuration | ||
26 | modules. | ||
27 | .Pp | ||
28 | .Fn CONF_modules_finish | ||
29 | calls the configuration | ||
30 | .Sy finish | ||
31 | handler of each configuration module to free up any configuration | ||
32 | that module may have performed. | ||
33 | .Pp | ||
34 | .Fn CONF_modules_unload | ||
35 | finishes and unloads configuration modules. | ||
36 | If | ||
37 | .Fa all | ||
38 | is set to 0, only modules loaded from DSOs will be unloaded. | ||
39 | If | ||
40 | .Fa all | ||
41 | is 1, all modules, including builtin modules, will be unloaded. | ||
42 | .Sh NOTES | ||
43 | Normally applications will only call | ||
44 | .Fn CONF_modules_free | ||
45 | at application to tidy up any configuration performed. | ||
46 | .Sh RETURN VALUE | ||
47 | None of the functions return a value. | ||
48 | .Sh SEE ALSO | ||
49 | .Xr CONF_modules_load_file 3 , | ||
50 | .Xr OPENSSL_config 3 | ||
51 | .Sh HISTORY | ||
52 | .Fn CONF_modules_free , | ||
53 | .Fn CONF_modules_unload , | ||
54 | and | ||
55 | .Fn CONF_modules_finish | ||
56 | first appeared in OpenSSL 0.9.7. | ||