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

Function decl_die

server/request.c:112–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110
111
112static int decl_die(int status, const char *phase, request_rec *r)
113{
114 if (status == DECLINED) {
115 ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(00025)
116 "configuration error: couldn't %s: %s", phase, r->uri);
117 return HTTP_INTERNAL_SERVER_ERROR;
118 }
119 else {
120 ap_log_rerror(APLOG_MARK, APLOG_TRACE3, 0, r,
121 "auth phase '%s' gave status %d: %s", phase,
122 status, r->uri);
123 return status;
124 }
125}
126
127AP_DECLARE(int) ap_some_authn_required(request_rec *r)
128{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected