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

Function ap_note_auth_failure

server/protocol.c:1736–1746  ·  view source on GitHub ↗

* Support for the Basic authentication protocol, and a bit for Digest. */

Source from the content-addressed store, hash-verified

1734 * Support for the Basic authentication protocol, and a bit for Digest.
1735 */
1736AP_DECLARE(void) ap_note_auth_failure(request_rec *r)
1737{
1738 const char *type = ap_auth_type(r);
1739 if (type) {
1740 ap_run_note_auth_failure(r, type);
1741 }
1742 else {
1743 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(00571)
1744 "need AuthType to note auth failure: %s", r->uri);
1745 }
1746}
1747
1748AP_DECLARE(void) ap_note_basic_auth_failure(request_rec *r)
1749{

Callers 5

authorize_user_coreFunction · 0.85
ap_get_basic_auth_pwFunction · 0.85
http_protocol.hFile · 0.85

Calls 1

ap_auth_typeFunction · 0.85

Tested by

no test coverage detected