]> saetta.ns0.it Git - zakauthe/mod_authn/commitdiff
Integration with mod_auth.
authorAndrea Zagli <azagli@libero.it>
Sat, 2 Dec 2017 09:31:51 +0000 (10:31 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 2 Dec 2017 09:31:51 +0000 (10:31 +0100)
src/mod_authn_zakauthe.c

index 991de254067e70b8fbb91deee9e5c3b2ea728d45..de9be19b6424ddb4455a3dbd772d8d5a37f21928 100644 (file)
 
 #include <libzakauthe/libzakauthe.h>
 
-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) =