Lines Matching refs:conf
262 ident_config_rec *conf = apr_palloc(p, sizeof(*conf));
264 conf->do_rfc1413 = DEFAULT_RFC1413 | RFC1413_UNSET;
265 conf->timeout = apr_time_from_sec(RFC1413_TIMEOUT);
266 conf->timeout_unset = 1;
268 return (void *)conf;
273 ident_config_rec *conf = (ident_config_rec *)apr_pcalloc(p, sizeof(*conf));
277 conf->timeout = new->timeout_unset
281 conf->do_rfc1413 = new->do_rfc1413 & RFC1413_UNSET
285 return (void *)conf;
305 ident_config_rec *conf;
311 conf = ap_get_module_config(r->per_dir_config, &ident_module);
314 if (!(conf->do_rfc1413 & ~RFC1413_UNSET)) {
318 rv = rfc1413_connect(&sock, conn, srv, conf->timeout);