NCONF_get_number_e

Look up a numeric value in a CONF object, reporting errors via the error stack.

Synopsis

Declared in <openssl/conf.h>

int
NCONF_get_number_e(
    CONF const* conf,
    char const* group,
    char const* name,
    long* result);

Return Value

1 on success, or 0 on failure.

Parameters

NameDescription
confConfiguration to query.
groupSection name, or NULL for the default section.
nameKey name within the section.
resultReceives the parsed long integer on success.