* Support for the Basic authentication protocol, and a bit for Digest. */
| 1734 | * Support for the Basic authentication protocol, and a bit for Digest. |
| 1735 | */ |
| 1736 | AP_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 | |
| 1748 | AP_DECLARE(void) ap_note_basic_auth_failure(request_rec *r) |
| 1749 | { |
no test coverage detected