summaryrefslogtreecommitdiffstats
path: root/service_passwords.c
diff options
context:
space:
mode:
Diffstat (limited to 'service_passwords.c')
-rw-r--r--service_passwords.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/service_passwords.c b/service_passwords.c
new file mode 100644
index 0000000..3d5ca6c
--- /dev/null
+++ b/service_passwords.c
@@ -0,0 +1,22 @@
+#include <stdio.h>
+#include <string.h>
+#include <syslog.h>
+
+#include <slapi-plugin.h>
+
+Slapi_PluginDesc bindpdesc = {
+ .spd_id = "service_passwords",
+ .spd_vendor = "spline",
+ .spd_version = "1.0",
+ .spd_description = "preoperation plugin "
+ "to authenticate a bind against different passwords"
+};
+
+int service_passwords_init(Slapi_PBlock *pb)
+{
+ int rc = 0;
+
+ rc |= slapi_pblock_set(pb, SLAPI_PLUGIN_VERSION, SLAPI_PLUGIN_CURRENT_VERSION);
+ rc |= slapi_pblock_set(pb, SLAPI_PLUGIN_DESCRIPTION, (void *) &bindpdesc);
+ return rc;
+}