From 99159b5032fa1b059237e87fc4ce216138130f83 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 2 Dec 2017 10:31:51 +0100 Subject: [PATCH] Integration with mod_auth. --- src/mod_authn_zakauthe.c | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) 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) = -- 2.49.0