Lines Matching defs:dc
706 util_ldap_config_t *dc =
731 && !compare_client_certs(dc->client_certs, l->client_certs))
769 !compare_client_certs(dc->client_certs, l->client_certs))
841 l->ChaseReferrals = dc->ChaseReferrals;
842 l->ReferralHopLimit = dc->ReferralHopLimit;
852 l->client_certs = apr_array_copy_hdr(l->pool, dc->client_certs);
2442 util_ldap_config_t *dc = config;
2482 cert = (apr_ldap_opt_tls_cert_t *)apr_array_push(dc->client_certs);
2606 util_ldap_config_t *dc = config;
2612 dc->ChaseReferrals = AP_LDAP_CHASEREFERRALS_ON;
2615 dc->ChaseReferrals = AP_LDAP_CHASEREFERRALS_OFF;
2618 dc->ChaseReferrals = AP_LDAP_CHASEREFERRALS_SDKDEFAULT;
2653 util_ldap_config_t *dc = config;
2655 dc->ReferralHopLimit = atol(hop_limit);
2657 if (dc->ReferralHopLimit <= 0) {
2663 dc->ReferralHopLimit);
2669 util_ldap_config_t *dc =
2673 dc->client_certs = apr_array_make(p, 10, sizeof(apr_ldap_opt_tls_cert_t));
2674 dc->ChaseReferrals = AP_LDAP_CHASEREFERRALS_ON;
2675 dc->ReferralHopLimit = AP_LDAP_HOPLIMIT_UNSET;
2677 return dc;