Lines Matching refs:cnf
74 static int module_run(const CONF *cnf, const char *name, const char *value,
81 const CONF *cnf);
82 static CONF_MODULE *module_load_dso(const CONF *cnf, const char *name,
110 static int conf_diagnostics(const CONF *cnf)
112 return _CONF_get_number(cnf, NULL, "config_diagnostics") != 0;
117 int CONF_modules_load(const CONF *cnf, const char *appname,
125 if (!cnf)
128 if (conf_diagnostics(cnf))
136 vsection = NCONF_get_string(cnf, NULL, appname);
139 vsection = NCONF_get_string(cnf, NULL, "openssl_conf");
147 values = NCONF_get_section(cnf, vsection);
165 ret = module_run(cnf, vl->name, vl->value, flags);
243 static int module_run(const CONF *cnf, const char *name, const char *value,
256 md = module_load_dso(cnf, name, value);
266 ret = module_init(md, name, value, cnf);
279 static CONF_MODULE *module_load_dso(const CONF *cnf,
290 path = _CONF_get_string(cnf, value, "path");
400 const CONF *cnf)
421 ret = pmod->init(imod, cnf);