MAN page from Mandrake Other ldap-devel-3.3-3.i386.rpm
LDAP_COMPARE
Section: C Library Functions (3)
Updated: 15 November 1994
Index NAME
ldap_compare, ldap_compare_s - Perform an LDAP compare operation
SYNOPSIS
#include <lber.h>#include <ldap.h>int ldap_compare_s(ld, dn, attr, value)LDAP *ld;char *dn, *attr, *value;int ldap_compare(ld, dn, attr, value)LDAP *ld;char *dn, *attr, *value;
DESCRIPTION
The
ldap_compare_s()routine is used to perform an LDAP compare operationsynchronously. It takes
dn, the DN of the entry upon which to performthe compare, and
attr and
value, the attribute type and value tocompare to those found in the entry. It returns an LDAP error code, whichwill be LDAP_COMPARE_TRUE if the entry contains the attribute value andLDAP_COMPARE_FALSE if it does not. Otherwise, some error code is returned.
Theldap_compare()routine is used to perform an LDAP compare operationasynchronously. It takes the same parameters asldap_compare_s(),but returns the message id of the request it initiated. The result ofthe compare can be obtained by a subsequent call toldap_result(3).
ERRORS
ldap_compare_s()returns an LDAP error code which can be interpretedby calling one of
ldap_perror(3)and friends. ldap_compare() returns-1 if something went wrong initiating the request. It returns thenon-negative message id of the request if things went ok.
BUGS
There is no way to compare binary values, but there should be.
SEE ALSO
ldap(3),ldap_error(3)
Index
- NAME
- SYNOPSIS
- DESCRIPTION
- ERRORS
- BUGS
- SEE ALSO
This document was created byman2html,using the manual pages.