From: Andrea Zagli Date: Sat, 2 Dec 2017 09:31:51 +0000 (+0100) Subject: Integration with mod_auth. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=99159b5032fa1b059237e87fc4ce216138130f83;p=zakauthe%2Fmod_authn Integration with mod_auth. --- diff --git a/src/mod_authn_zakauthe.c b/src/mod_authn_zakauthe.c index 991de25..de9be19 100644 --- a/src/mod_authn_zakauthe.c +++ b/src/mod_authn_zakauthe.c @@ -35,16 +35,32 @@ #include -static int -example_handler (request_rec *r) +static authn_status +check_password (request_rec *r, const char *user, + const char *password) { + return AUTH_GRANTED; } +static authn_status +get_realm_hash (request_rec *r, const char *user, + const char *realm, char **rethash) +{ + return AUTH_GRANTED; +} + +static const authn_provider authn_zakauthe_provider = + { + &check_password, + &get_realm_hash, + }; + static void register_hooks (apr_pool_t *pool) { - /* Create a hook in the request handler, so we get called when a request arrives */ - ap_hook_handler(example_handler, NULL, NULL, APR_HOOK_LAST); + ap_register_auth_provider (pool, AUTHN_PROVIDER_GROUP, "zakauthe", + AUTHN_PROVIDER_VERSION, + &authn_zakauthe_provider, AP_AUTH_INTERNAL_PER_CONF); } AP_DECLARE_MODULE(authn_zakauthe) =