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

Function hook_note_basic_auth_failure

modules/aaa/mod_auth_basic.c:239–246  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

237}
238
239static int hook_note_basic_auth_failure(request_rec *r, const char *auth_type)
240{
241 if (ap_cstr_casecmp(auth_type, "Basic"))
242 return DECLINED;
243
244 note_basic_auth_failure(r);
245 return OK;
246}
247
248static int get_basic_auth(request_rec *r, const char **user,
249 const char **pw)

Callers

nothing calls this directly

Calls 2

ap_cstr_casecmpFunction · 0.85
note_basic_auth_failureFunction · 0.85

Tested by

no test coverage detected