diff options
| author | Andrew Bartlett <abartlet@samba.org> | 2009-12-07 15:27:43 +1100 |
|---|---|---|
| committer | Andrew Bartlett <abartlet@samba.org> | 2009-12-07 15:27:43 +1100 |
| commit | 54ea4b17f06a6f2fb343111be22f28191d21fdf1 (patch) | |
| tree | a1ff01d3627e32e363395501fba0410354513cb3 /source4/lib/ldb/include | |
| parent | b2db28b634bceccb4c87e3f764649a5ed1f3217a (diff) | |
| download | samba-54ea4b17f06a6f2fb343111be22f28191d21fdf1.tar.gz samba-54ea4b17f06a6f2fb343111be22f28191d21fdf1.tar.xz samba-54ea4b17f06a6f2fb343111be22f28191d21fdf1.zip | |
s4:ldb Add a function to match a message against an objectClass
(as objectClass will always be a case insensitive ascii string, we can
make a much simpler match function here than for the general case).
Andrew Bartlett
Diffstat (limited to 'source4/lib/ldb/include')
| -rw-r--r-- | source4/lib/ldb/include/ldb_module.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/lib/ldb/include/ldb_module.h b/source4/lib/ldb/include/ldb_module.h index 7c18683201..0b0f863fec 100644 --- a/source4/lib/ldb/include/ldb_module.h +++ b/source4/lib/ldb/include/ldb_module.h @@ -126,6 +126,9 @@ int ldb_match_msg(struct ldb_context *ldb, struct ldb_dn *base, enum ldb_scope scope); +int ldb_match_msg_objectclass(const struct ldb_message *msg, + const char *objectclass); + /* The following definitions come from lib/ldb/common/ldb_modules.c */ struct ldb_module *ldb_module_new(TALLOC_CTX *memctx, |
