[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: tag= err= codes?



On Sun, 6 Oct 2002 14:43:36 +0100 (IST)
Paul Reilly <pareilly@tcd.ie> wrote:

> Is there a list of tag and err number codes and their meaning
> somehwere? It would be very useful if such a quick reference table
> existed.

ldap.h

#define LDAP_SUCCESS                    0x00
#define LDAP_OPERATIONS_ERROR           0x01
#define LDAP_PROTOCOL_ERROR             0x02
#define LDAP_TIMELIMIT_EXCEEDED         0x03
#define LDAP_SIZELIMIT_EXCEEDED         0x04
#define LDAP_COMPARE_FALSE              0x05
...

etc.

obviously, if you want to grep it for values, you'll want to convert
your error code to hex first.

Matthew Backes
lucca@csun.edu