diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-08-10 01:51:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:15:27 -0500 |
commit | ecfdd5fc6cd704eaf496f4d31c18b6db97589fb3 (patch) | |
tree | 8799bc1da6166f243109077391edec29b5386cc3 /source4/lib/ldb/include | |
parent | 11685acd1d79591ed2b9d2656bee5a51442ced0f (diff) | |
download | samba-ecfdd5fc6cd704eaf496f4d31c18b6db97589fb3.tar.gz samba-ecfdd5fc6cd704eaf496f4d31c18b6db97589fb3.tar.bz2 samba-ecfdd5fc6cd704eaf496f4d31c18b6db97589fb3.zip |
r17474: Allow the partitions module to load modules for specific backends.
Andrew Bartlett
(This used to be commit c016db2187120991e8ad779b9df35480d7c19400)
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r-- | source4/lib/ldb/include/ldb_private.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/lib/ldb/include/ldb_private.h b/source4/lib/ldb/include/ldb_private.h index f442202ee3..97e2828371 100644 --- a/source4/lib/ldb/include/ldb_private.h +++ b/source4/lib/ldb/include/ldb_private.h @@ -137,7 +137,10 @@ int ldb_connect_backend(struct ldb_context *ldb, const char *url, const char *op /* The following definitions come from lib/ldb/common/ldb_modules.c */ +const char **ldb_modules_list_from_string(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char *string); +int ldb_load_modules_list(struct ldb_context *ldb, const char **module_list, struct ldb_module *backend, struct ldb_module **out); int ldb_load_modules(struct ldb_context *ldb, const char *options[]); +int ldb_init_module_chain(struct ldb_context *ldb, struct ldb_module *module); int ldb_next_request(struct ldb_module *module, struct ldb_request *request); int ldb_next_start_trans(struct ldb_module *module); int ldb_next_end_trans(struct ldb_module *module); |