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

Function format_authz_result

modules/aaa/mod_authz_core.c:357–366  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

355}
356
357static const char* format_authz_result(authz_status result)
358{
359 return ((result == AUTHZ_DENIED)
360 ? "denied"
361 : ((result == AUTHZ_GRANTED)
362 ? "granted"
363 : ((result == AUTHZ_DENIED_NO_USER)
364 ? "denied (no authenticated user yet)"
365 : "neutral")));
366}
367
368static const char* format_authz_command(apr_pool_t *p,
369 authz_section_conf *section)

Callers 1

apply_authz_sectionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected