MCPcopy Create free account
hub / github.com/apache/httpd / ap_some_auth_required

Function ap_some_auth_required

server/request.c:2125–2133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2123extern APR_OPTIONAL_FN_TYPE(authz_some_auth_required) *ap__authz_ap_some_auth_required;
2124
2125AP_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
2135AP_DECLARE(void) ap_clear_auth_internal(void)
2136{

Callers 2

http_request.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected