| 237 | } |
| 238 | |
| 239 | static 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 | |
| 248 | static int get_basic_auth(request_rec *r, const char **user, |
| 249 | const char **pw) |
nothing calls this directly
no test coverage detected