Look up a numeric value in a CONF object, reporting errors via the error stack.
Declared in <openssl/conf.h>
int
NCONF_get_number_e(
CONF const* conf,
char const* group,
char const* name,
long* result);
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| conf | Configuration to query. |
| group | Section name, or NULL for the default section. |
| name | Key name within the section. |
| result | Receives the parsed long integer on success. |