Lines Matching defs:cnf
20 static int stbl_module_init(CONF_IMODULE *md, const CONF *cnf)
28 if ((sktmp = NCONF_get_section(cnf, stbl_section)) == NULL) {
64 CONF_VALUE *cnf = NULL;
74 cnf = sk_CONF_VALUE_value(lst, i);
75 if (strcmp(cnf->name, "min") == 0) {
76 tbl_min = strtoul(cnf->value, &eptr, 0);
79 } else if (strcmp(cnf->name, "max") == 0) {
80 tbl_max = strtoul(cnf->value, &eptr, 0);
83 } else if (strcmp(cnf->name, "mask") == 0) {
84 if (!ASN1_str2mask(cnf->value, &tbl_mask) || !tbl_mask)
86 } else if (strcmp(cnf->name, "flags") == 0) {
87 if (strcmp(cnf->value, "nomask") == 0)
89 else if (strcmp(cnf->value, "none") == 0)
99 if (cnf)
101 "field=%s, value=%s", cnf->name, cnf->value);