Lines Matching refs:user
42 #define AUTHN_CACHE_STORE(r,user,realm,data) \
44 authn_cache_store((r), "dbm", (user), (realm), (data))
75 OR_AUTHCFG, "dbm database file containing user IDs and passwords"),
78 OR_AUTHCFG, "what type of DBM file the user file is"),
85 const char *user, char **value,
99 key.dptr = (char*)user;
117 static authn_status check_dbm_pw(request_rec *r, const char *user,
126 rv = fetch_dbm_value(conf->dbmtype, conf->pwfile, user, &dbm_password,
144 AUTHN_CACHE_STORE(r, user, NULL, dbm_password);
146 rv = ap_password_validate(r, user, password, dbm_password);
155 static authn_status get_dbm_realm_hash(request_rec *r, const char *user,
165 apr_pstrcat(r->pool, user, ":", realm, NULL),
185 AUTHN_CACHE_STORE(r, user, realm, dbm_hash);