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
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. |
Created with MrDocs