| 417 | } |
| 418 | |
| 419 | static int hook_note_cookie_auth_failure(request_rec * r, |
| 420 | const char *auth_type) |
| 421 | { |
| 422 | if (ap_cstr_casecmp(auth_type, "form")) |
| 423 | return DECLINED; |
| 424 | |
| 425 | note_cookie_auth_failure(r); |
| 426 | return OK; |
| 427 | } |
| 428 | |
| 429 | /** |
| 430 | * Set the auth username and password into the main request |
nothing calls this directly
no test coverage detected