From: Andrew Bartlett Date: Tue, 30 May 2017 09:04:02 +0000 (+1200) Subject: ldb: Add Doxygen docs for ldb_schema_set_override_indexlist() X-Git-Tag: ldb-1.1.30~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d73d926458fd92f15287fa6bc0246b79d06c94d4;p=thirdparty%2Fsamba.git ldb: Add Doxygen docs for ldb_schema_set_override_indexlist() Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- diff --git a/lib/ldb/include/ldb_module.h b/lib/ldb/include/ldb_module.h index d8e650e8f24..dab3d2e8235 100644 --- a/lib/ldb/include/ldb_module.h +++ b/lib/ldb/include/ldb_module.h @@ -133,6 +133,16 @@ typedef const struct ldb_schema_attribute *(*ldb_attribute_handler_override_fn_t void ldb_schema_attribute_set_override_handler(struct ldb_context *ldb, ldb_attribute_handler_override_fn_t override, void *private_data); + +/** + Allow the caller to define that the callback for the attribute handler + also overrides the index list + + \param ldb The ldb context + \param one_level_indexes Indicates that the index for SCOPE_ONELEVEL + should also be maintained + +*/ void ldb_schema_set_override_indexlist(struct ldb_context *ldb, bool one_level_indexes);