Searched defs:auth_result (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/aaa/
H A Dmod_auth_basic.c303 authn_status auth_result; local
350 auth_result = AUTH_GENERAL_ERROR;
367 auth_result = AUTH_GENERAL_ERROR;
371 auth_result = provider->get_realm_hash(r, sent_user, realm,
373 if (auth_result == AUTH_USER_FOUND) {
374 auth_result = strcmp(digest, password) ? AUTH_DENIED
379 auth_result = provider->check_password(r, sent_user, sent_pw);
385 if (auth_result != AUTH_USER_NOT_FOUND) {
397 if (auth_result != AUTH_GRANTED) {
401 if (!(conf->authoritative) && auth_result !
[all...]
H A Dmod_auth_form.c761 authn_status auth_result; local
782 auth_result = AUTH_GENERAL_ERROR;
793 auth_result = AUTH_USER_NOT_FOUND;
797 auth_result = provider->check_password(r, sent_user, sent_pw);
802 if (auth_result != AUTH_USER_NOT_FOUND) {
814 if (auth_result != AUTH_GRANTED) {
818 if (!(conf->authoritative) && auth_result != AUTH_DENIED) {
822 switch (auth_result) {
H A Dmod_authz_core.c717 authz_status auth_result; local
721 auth_result =
728 format_authz_result(auth_result));
730 return auth_result;
737 auth_result =
746 auth_result = AUTHZ_NEUTRAL;
765 auth_result = child_result;
769 && auth_result != AUTHZ_DENIED)
770 || (auth_result == AUTHZ_NEUTRAL)) {
771 auth_result
817 authz_status auth_result; local
[all...]
H A Dmod_auth_digest.c1266 authn_status auth_result; local
1285 auth_result = AUTH_GENERAL_ERROR;
1297 auth_result = provider->get_realm_hash(r, user, conf->realm,
1303 if (auth_result != AUTH_USER_NOT_FOUND) {
1315 if (auth_result == AUTH_USER_FOUND) {
1319 return auth_result;

Completed in 28 milliseconds