1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s4-dsdb: implementation of the dirsync control

Signed-off-by: Andrew Tridgell <tridge@samba.org>
This commit is contained in:
Matthieu Patou 2011-01-13 21:55:11 +03:00
parent 7b4e1e78be
commit fa400af18b
3 changed files with 1369 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -163,6 +163,7 @@ static int samba_dsdb_init(struct ldb_module *module)
static const char *modules_list[] = {"resolve_oids",
"rootdse",
"lazy_commit",
"dirsync",
"paged_results",
"ranged_results",
"anr",

View File

@ -390,3 +390,12 @@ bld.SAMBA_MODULE('ldb_simple_dn',
internal_module=False,
deps='talloc DSDB_MODULE_HELPERS'
)
bld.SAMBA_MODULE('ldb_dirsync',
source='dirsync.c',
subsystem='ldb',
init_function='ldb_dirsync_module_init',
module_init_name='ldb_init_module',
internal_module=False,
deps='talloc events security samdb DSDB_MODULE_HELPERS DSDB_MODULE_HELPER_SCHEMA'
)