Home | History | Annotate | Download | only in conf

Lines Matching refs:conf

63 #include <openssl/conf.h>
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,
122 /* Main function: load modules from a CONF structure */
124 int CONF_modules_load(const CONF *cnf, const char *appname,
170 CONF *conf = NULL;
172 conf = NCONF_new(NULL);
173 if (!conf)
185 if (NCONF_load(conf, file, NULL) <= 0)
196 ret = CONF_modules_load(conf, appname, flags);
201 NCONF_free(conf);
206 static int module_run(const CONF *cnf, char *name, char *value,
245 static CONF_MODULE *module_load_dso(const CONF *cnf, char *name, char *value,
348 const CONF *cnf)