New module: mod_authn_cache

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@956966 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Kew
2010-06-22 18:16:16 +00:00
parent 57df737005
commit 2ecd34c26d
3 changed files with 417 additions and 0 deletions

View File

@ -107,6 +107,18 @@ typedef struct {
const char *require_line);
} authz_provider;
/* ap_authn_cache_store: Optional function for authn providers
* to enable cacheing their lookups with mod_authn_cache
* @param r The request rec
* @param module Module identifier
* @param user User name to authenticate
* @param realm Digest authn realm (NULL for basic authn)
* @param data The value looked up by the authn provider, to cache
*/
APR_DECLARE_OPTIONAL_FN(void, ap_authn_cache_store,
(request_rec*, const char*, const char*,
const char*, const char*));
#ifdef __cplusplus
}
#endif