14 #if !defined(__CLING__)
27 #ifndef LBER_CLASS_UNIVERSAL
39 #define LDAP_VERSION1 1
40 #define LDAP_VERSION2 2
41 #define LDAP_VERSION3 3
43 const int LDAP_PORT = 389;
45 const int LDAP_SCOPE_DEFAULT = -1;
46 const int LDAP_SCOPE_BASE = 0x0000;
47 const int LDAP_SCOPE_ONELEVEL = 0x0001;
48 const int LDAP_SCOPE_SUBTREE = 0x0002;
50 const int LDAP_MOD_ADD = 0x0000;
51 const int LDAP_MOD_DELETE = 0x0001;
52 const int LDAP_MOD_REPLACE = 0x0002;
53 const int LDAP_MOD_BVALUES = 0x0080;
55 const int LDAP_SERVER_DOWN = 0x51;