| 2123 | extern APR_OPTIONAL_FN_TYPE(authz_some_auth_required) *ap__authz_ap_some_auth_required; |
| 2124 | |
| 2125 | AP_DECLARE(int) ap_some_auth_required(request_rec *r) |
| 2126 | { |
| 2127 | /* Is there a require line configured for the type of *this* req? */ |
| 2128 | if (ap__authz_ap_some_auth_required) { |
| 2129 | return ap__authz_ap_some_auth_required(r); |
| 2130 | } |
| 2131 | else |
| 2132 | return 0; |
| 2133 | } |
| 2134 | |
| 2135 | AP_DECLARE(void) ap_clear_auth_internal(void) |
| 2136 | { |
no outgoing calls
no test coverage detected