Lines Matching refs:conf
1 /* crypto/conf/test.c */
61 #include <openssl/conf.h>
67 LHASH_OF(CONF_VALUE) *conf;
74 conf = CONF_load(NULL, "ssleay.cnf", &eline);
75 if (conf == NULL) {
81 lh_stats((_LHASH *)conf,stdout);
82 lh_node_stats((_LHASH *)conf,stdout);
83 lh_node_usage_stats((_LHASH *)conf,stdout);
85 s = CONF_get_string(conf, NULL, "init2");
88 s = CONF_get_string(conf, NULL, "cipher1");
91 s = CONF_get_string(conf, "s_client", "cipher1");
95 CONF_dump_fp(conf, stdout);