summaryrefslogtreecommitdiff
path: root/source4/libcli/ldap/ldap.h
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2004-09-27 14:11:11 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:59:22 -0500
commit456e2f82e801cbc26898fad20c273b05248ee0d6 (patch)
treefe4a7a814571b96cbc104494122bf6df7b7eff55 /source4/libcli/ldap/ldap.h
parent718bb5e8ffb04ab48cb5e9c0a7df848212340a57 (diff)
downloadsamba-456e2f82e801cbc26898fad20c273b05248ee0d6.tar.gz
samba-456e2f82e801cbc26898fad20c273b05248ee0d6.tar.bz2
samba-456e2f82e801cbc26898fad20c273b05248ee0d6.zip
r2689: Use consistent naming Del -> Delete
Add delete functionality to ldb simple lda server backend add some const in ldap.h (This used to be commit 5ed9a6eb184f34eb572dd81202237042518ec7cd)
Diffstat (limited to 'source4/libcli/ldap/ldap.h')
-rw-r--r--source4/libcli/ldap/ldap.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/libcli/ldap/ldap.h b/source4/libcli/ldap/ldap.h
index 449be9e015..cda065ce6e 100644
--- a/source4/libcli/ldap/ldap.h
+++ b/source4/libcli/ldap/ldap.h
@@ -33,8 +33,8 @@ enum ldap_request_tag {
LDAP_TAG_ModifyResponse = 7,
LDAP_TAG_AddRequest = 8,
LDAP_TAG_AddResponse = 9,
- LDAP_TAG_DelRequest = 10,
- LDAP_TAG_DelResponse = 11,
+ LDAP_TAG_DeleteRequest = 10,
+ LDAP_TAG_DeleteResponse = 11,
LDAP_TAG_ModifyDNRequest = 12,
LDAP_TAG_ModifyDNResponse = 13,
LDAP_TAG_CompareRequest = 14,
@@ -53,6 +53,7 @@ enum ldap_auth_mechanism {
enum ldap_result_code {
LDAP_SUCCESS = 0,
LDAP_SASL_BIND_IN_PROGRESS = 0x0e,
+ LDAP_NO_SUCH_OBJECT = 0x20,
LDAP_INVALID_CREDENTIALS = 0x31,
LDAP_OTHER = 0x50
};
@@ -154,7 +155,7 @@ struct ldap_AddRequest {
struct ldap_attribute *attributes;
};
-struct ldap_DelRequest {
+struct ldap_DeleteRequest {
const char *dn;
};
@@ -198,8 +199,8 @@ union ldap_Request {
struct ldap_Result ModifyResponse;
struct ldap_AddRequest AddRequest;
struct ldap_Result AddResponse;
- struct ldap_DelRequest DelRequest;
- struct ldap_Result DelResponse;
+ struct ldap_DeleteRequest DeleteRequest;
+ struct ldap_Result DeleteResponse;
struct ldap_ModifyDNRequest ModifyDNRequest;
struct ldap_Result ModifyDNResponse;
struct ldap_CompareRequest CompareRequest;