summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/include
diff options
context:
space:
mode:
authorNadezhda Ivanova <nivanova@samba.org>2010-09-27 10:01:09 -0700
committerAndrew Tridgell <tridge@samba.org>2010-09-27 19:00:38 +0000
commitaeedd29d390a1bb8ad1b446bf9b39cffd42e5612 (patch)
treef0de78df1754f4f1a0ca09b88f8d9cc22686fb44 /source4/lib/ldb/include
parent2cf0525b2382d22b3497f49eb58b9fd8f0c837e1 (diff)
downloadsamba-aeedd29d390a1bb8ad1b446bf9b39cffd42e5612.tar.gz
samba-aeedd29d390a1bb8ad1b446bf9b39cffd42e5612.tar.bz2
samba-aeedd29d390a1bb8ad1b446bf9b39cffd42e5612.zip
s4-ldb: Added ldb_request_replace_control
It is the same as ldb_request_add_control, except it will replace an existing control. Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Sep 27 19:00:38 UTC 2010 on sn-devel-104
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r--source4/lib/ldb/include/ldb.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h
index 4bc793b9cc..d29aed491a 100644
--- a/source4/lib/ldb/include/ldb.h
+++ b/source4/lib/ldb/include/ldb.h
@@ -1218,6 +1218,18 @@ int ldb_build_rename_req(struct ldb_request **ret_req,
int ldb_request_add_control(struct ldb_request *req, const char *oid, bool critical, void *data);
/**
+ replace a ldb_control in a ldb_request
+
+ \param req the request struct where to add the control
+ \param oid the object identifier of the control as string
+ \param critical whether the control should be critical or not
+ \param data a talloc pointer to the control specific data
+
+ \return result code (LDB_SUCCESS on success, or a failure code)
+*/
+int ldb_request_replace_control(struct ldb_request *req, const char *oid, bool critical, void *data);
+
+/**
check if a control with the specified "oid" exist and return it
\param req the request struct where to add the control
\param oid the object identifier of the control as string