1999-02-05 17:03:47 +08:00
|
|
|
/* init.c - initialize passwd backend */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-02-05 17:03:47 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "external.h"
|
|
|
|
|
1999-06-25 01:06:34 +08:00
|
|
|
#ifdef SLAPD_PASSWD_DYNAMIC
|
|
|
|
|
1999-08-17 08:28:01 +08:00
|
|
|
int back_passwd_LTX_init_module(int argc, char *argv[]) {
|
|
|
|
BackendInfo bi;
|
1999-06-25 01:06:34 +08:00
|
|
|
|
1999-08-17 08:28:01 +08:00
|
|
|
memset( &bi, 0, sizeof(bi) );
|
|
|
|
bi.bi_type = "passwd";
|
|
|
|
bi.bi_init = passwd_back_initialize;
|
1999-06-25 01:06:34 +08:00
|
|
|
|
1999-08-17 08:28:01 +08:00
|
|
|
backend_add(&bi);
|
|
|
|
return 0;
|
1999-06-25 01:06:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SLAPD_PASSWD_DYNAMIC */
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
int
|
|
|
|
passwd_back_initialize(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
1999-03-04 01:02:10 +08:00
|
|
|
bi->bi_open = 0;
|
|
|
|
bi->bi_config = 0;
|
|
|
|
bi->bi_close = 0;
|
|
|
|
bi->bi_destroy = 0;
|
|
|
|
|
|
|
|
bi->bi_db_init = 0;
|
|
|
|
bi->bi_db_config = 0;
|
|
|
|
bi->bi_db_open = 0;
|
|
|
|
bi->bi_db_close = 0;
|
|
|
|
bi->bi_db_destroy = 0;
|
|
|
|
|
|
|
|
bi->bi_op_bind = 0;
|
|
|
|
bi->bi_op_unbind = 0;
|
1999-02-05 17:03:47 +08:00
|
|
|
bi->bi_op_search = passwd_back_search;
|
1999-03-04 01:02:10 +08:00
|
|
|
bi->bi_op_compare = 0;
|
|
|
|
bi->bi_op_modify = 0;
|
|
|
|
bi->bi_op_modrdn = 0;
|
|
|
|
bi->bi_op_add = 0;
|
|
|
|
bi->bi_op_delete = 0;
|
|
|
|
bi->bi_op_abandon = 0;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
bi->bi_extended = 0;
|
|
|
|
|
1999-03-04 01:02:10 +08:00
|
|
|
bi->bi_acl_group = 0;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
1999-06-23 20:31:35 +08:00
|
|
|
bi->bi_connection_init = 0;
|
|
|
|
bi->bi_connection_destroy = 0;
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|