Load a CONF file into an LHASH of CONF_VALUE (legacy CONF API).
Declared in <openssl/conf.h>
lhash_st_CONF_VALUE*
CONF_load(
lhash_st_CONF_VALUE* conf,
char const* file,
long* eline);
The configuration hash (possibly newly allocated), or NULL on error.
| Name | Description |
|---|---|
| conf | Existing hash to extend, or NULL to allocate a new one. |
| file | Path of the configuration file to parse. |
| eline | Receives the error line number on parse failure, or unchanged on success. |