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

/httpd/modules/aaa/
H A Dmod_auth_form.c726 * If the site passphrase is NULL, or if the sent_hash is NULL, this
734 static int check_site(request_rec * r, const char *site, const char *sent_user, const char *sent_hash) argument
737 if (site && sent_user && sent_hash) {
741 if (!strcmp(sent_hash, hash)) {
886 const char *sent_user = NULL, *sent_pw = NULL, *sent_hash = NULL; local
926 res = get_session_auth(r, &sent_user, &sent_pw, &sent_hash);
934 if (APR_SUCCESS == res && sent_user && sent_hash && sent_pw) {
935 rv = check_site(r, conf->site, sent_user, sent_hash);

Completed in 14 milliseconds