[#CONF_load_fp] = CONF_load_fp :mrdocs: Load a CONF file from an open FILE into an LHASH of CONF_VALUE (legacy API). == Synopsis Declared in `<openssl/conf.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:lhash_st_CONF_VALUE.adoc[lhash_st_CONF_VALUE]* CONF_load_fp( xref:lhash_st_CONF_VALUE.adoc[lhash_st_CONF_VALUE]* conf, FILE* fp, long* eline); ---- == Return Value The configuration hash (possibly newly allocated), or NULL on error. == Parameters [cols="1,4"] |=== | Name| Description | *conf* | Existing hash to extend, or NULL to allocate a new one. | *fp* | Input stream positioned at the start of the configuration text. | *eline* | Receives the error line number on parse failure, or unchanged on success. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#