[#CONF_module_add] = CONF_module_add :mrdocs: Register a built‐in configuration module under `name.` == Synopsis Declared in `<openssl/conf.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int CONF_module_add( char const* name, xref:conf_init_func.adoc[conf_init_func]* ifunc, xref:conf_finish_func.adoc[conf_finish_func]* ffunc); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *name* | Module name as referenced from openssl.cnf. | *ifunc* | Initialization callback invoked when the module is loaded. | *ffunc* | Finish/cleanup callback, or NULL. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#