summaryrefslogtreecommitdiff
path: root/daemon/httpauthd.c
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2004-08-12 00:50:29 +0000
committerStef Walter <stef@memberwebs.com>2004-08-12 00:50:29 +0000
commit86e45cfbd0655193e363be6daadbfd5434566a03 (patch)
tree5391fdcbfd6b3e360d425f0bd4b260d073901a21 /daemon/httpauthd.c
parentc44a74e52a8b227857f28289a91d126b7edc959c (diff)
- Added postgresql database support
- Lots of changes to properly abstract bd handlers - Handle multiple passwords and ha1s properly.
Diffstat (limited to 'daemon/httpauthd.c')
-rw-r--r--daemon/httpauthd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/daemon/httpauthd.c b/daemon/httpauthd.c
index f995d6d..bae758a 100644
--- a/daemon/httpauthd.c
+++ b/daemon/httpauthd.c
@@ -32,6 +32,7 @@
extern ha_handler_t simple_handler;
extern ha_handler_t ldap_handler;
extern ha_handler_t ntlm_handler;
+extern ha_handler_t pgsql_handler;
/* This is the list of all available handlers */
ha_handler_t* g_handlerlist[] =
@@ -42,6 +43,9 @@ ha_handler_t* g_handlerlist[] =
#if WITH_NTLM
&ntlm_handler,
#endif
+#if WITH_PGSQL
+ &pgsql_handler,
+#endif
&simple_handler,
};