Lines Matching refs:user
143 const char *user, const char *pass)
148 if (!strcasecmp(user, "off")) {
162 ap_expr_parse_cmd(cmd, user, AP_EXPR_FLAG_STRING_RESULT,
166 "Could not parse fake username expression '%s': %s", user,
214 "check for digest auth, using a hash of 'user:realm:pass'"),
248 static int get_basic_auth(request_rec *r, const char **user,
283 *user = ap_getword_nulls(r->pool, (const char**)&decoded_line, ':');
286 /* set the user, even though the user is unauthenticated at this point */
287 r->user = (char *) *user;
292 /* Determine user ID, and check if it really is that user, for HTTP
370 /* We expect the password to be hash of user:realm:password */
408 "user %s: authentication failure for \"%s\": "
415 "user %s not found: %s", sent_user, r->uri);
445 const char *auth_line, *user, *pass, *err;
453 user = ap_expr_str_exec(r, conf->fakeuser, &err);
456 "AuthBasicFake: could not evaluate user expression for URI '%s': %s", r->uri, err);
459 if (!user || !*user) {
485 apr_pstrcat(r->pool, user,