Home | History | Annotate | Download | only in conf

Lines Matching refs:CONF

1 /* crypto/conf/conf.h */
91 CONF *(*create)(CONF_METHOD *meth);
92 int (*init)(CONF *conf);
93 int (*destroy)(CONF *conf);
94 int (*destroy_data)(CONF *conf);
95 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
96 int (*dump)(const CONF *conf, BIO *bp);
97 int (*is_number)(const CONF *conf, char c);
98 int (*to_int)(const CONF *conf, char c);
99 int (*load)(CONF *conf, const char *name, long *eline);
111 typedef int conf_init_func(CONF_IMODULE *md, const CONF *cnf);
122 void CONF_set_nconf(CONF *conf,LHASH_OF(CONF_VALUE) *hash);
123 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf,const char *file,
126 LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp,
129 LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,long *eline);
130 STACK_OF(CONF_VALUE) *CONF_get_section(LHASH_OF(CONF_VALUE) *conf,
132 char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf,const char *group,
134 long CONF_get_number(LHASH_OF(CONF_VALUE) *conf,const char *group,
136 void CONF_free(LHASH_OF(CONF_VALUE) *conf);
137 int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out);
138 int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out);
143 /* New conf code. The semantics are different from the functions above.
153 CONF *NCONF_new(CONF_METHOD *meth);
159 void NCONF_free(CONF *conf);
160 void NCONF_free_data(CONF *conf);
162 int NCONF_load(CONF *conf,const char *file,long *eline);
164 int NCONF_load_fp(CONF *conf, FILE *fp,long *eline);
166 int NCONF_load_bio(CONF *conf, BIO *bp,long *eline);
167 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,const char *section);
168 char *NCONF_get_string(const CONF *conf,const char *group,const char *name);
169 int NCONF_get_number_e(const CONF *conf,const char *group,const char *name,
171 int NCONF_dump_fp(const CONF *conf, FILE *out);
172 int NCONF_dump_bio(const CONF *conf, BIO *out);
176 long NCONF_get_number(CONF *conf,char *group,char *name);
183 int CONF_modules_load(const CONF *cnf, const char *appname,
216 /* Error codes for the CONF functions. */