Lines Matching refs:virt

487     core_server_config *virt = (core_server_config *)virtv;
491 if (virt->ap_document_root)
492 conf->ap_document_root = virt->ap_document_root;
494 if (virt->access_name)
495 conf->access_name = virt->access_name;
497 /* XXX optimize to keep base->sec_ pointers if virt->sec_ array is empty */
498 conf->sec_dir = apr_array_append(p, base->sec_dir, virt->sec_dir);
499 conf->sec_url = apr_array_append(p, base->sec_url, virt->sec_url);
501 if (virt->redirect_limit)
502 conf->redirect_limit = virt->redirect_limit;
504 if (virt->subreq_limit)
505 conf->subreq_limit = virt->subreq_limit;
507 if (virt->trace_enable != AP_TRACE_UNSET)
508 conf->trace_enable = virt->trace_enable;
510 if (virt->http09_enable != AP_HTTP09_UNSET)
511 conf->http09_enable = virt->http09_enable;
513 if (virt->http_conformance != AP_HTTP_CONFORMANCE_UNSET)
514 conf->http_conformance = virt->http_conformance;
516 if (virt->http_cl_head_zero != AP_HTTP_CL_HEAD_ZERO_UNSET)
517 conf->http_cl_head_zero = virt->http_cl_head_zero;
519 if (virt->http_expect_strict != AP_HTTP_EXPECT_STRICT_UNSET)
520 conf->http_expect_strict = virt->http_expect_strict;
522 /* no action for virt->accf_map, not allowed per-vhost */
524 if (virt->protocol)
525 conf->protocol = virt->protocol;
527 if (virt->gprof_dir)
528 conf->gprof_dir = virt->gprof_dir;
530 if (virt->error_log_format)
531 conf->error_log_format = virt->error_log_format;
533 if (virt->error_log_conn)
534 conf->error_log_conn = virt->error_log_conn;
536 if (virt->error_log_req)
537 conf->error_log_req = virt->error_log_req;
539 if (virt->conn_log_level) {
541 conf->conn_log_level = virt->conn_log_level;
546 virt->conn_log_level);
550 conf->merge_trailers = (virt->merge_trailers != AP_MERGE_TRAILERS_UNSET)
551 ? virt->merge_trailers