| 805 | static APR_OPTIONAL_FN_TYPE(authn_ap_auth_name) *authn_ap_auth_name; |
| 806 | |
| 807 | AP_DECLARE(const char *) ap_auth_name(request_rec *r) |
| 808 | { |
| 809 | if (authn_ap_auth_name) { |
| 810 | return authn_ap_auth_name(r); |
| 811 | } |
| 812 | return NULL; |
| 813 | } |
| 814 | |
| 815 | /* |
| 816 | * Optional function coming from mod_access_compat, used to determine how |
no test coverage detected