Home | History | Annotate | Download | only in conf

Lines Matching refs:cnf

112 static int module_run(const CONF *cnf, char *name, char *value,
118 const CONF *cnf);
119 static CONF_MODULE *module_load_dso(const CONF *cnf, char *name, char *value,
124 int CONF_modules_load(const CONF *cnf, const char *appname,
133 if (!cnf)
137 vsection = NCONF_get_string(cnf, NULL, appname);
140 vsection = NCONF_get_string(cnf, NULL, "openssl_conf");
148 values = NCONF_get_section(cnf, vsection);
156 ret = module_run(cnf, vl->name, vl->value, flags);
206 static int module_run(const CONF *cnf, char *name, char *value,
216 md = module_load_dso(cnf, name, value, flags);
228 ret = module_init(md, name, value, cnf);
245 static CONF_MODULE *module_load_dso(const CONF *cnf, char *name, char *value,
255 path = NCONF_get_string(cnf, value, "path");
348 const CONF *cnf)
370 ret = pmod->init(imod, cnf);