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

Function note_basic_auth_failure

modules/aaa/mod_auth_basic.c:230–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228 */
229
230static void note_basic_auth_failure(request_rec *r)
231{
232 apr_table_setn(r->err_headers_out,
233 (PROXYREQ_PROXY == r->proxyreq) ? "Proxy-Authenticate"
234 : "WWW-Authenticate",
235 apr_pstrcat(r->pool, "Basic realm=\"", ap_auth_name(r),
236 "\"", NULL));
237}
238
239static int hook_note_basic_auth_failure(request_rec *r, const char *auth_type)
240{

Callers 3

get_basic_authFunction · 0.85
authenticate_basic_userFunction · 0.85

Calls 1

ap_auth_nameFunction · 0.85

Tested by

no test coverage detected