ldap.h 282 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #ifndef __AUTH_LDAP_H__ #define __AUTH_LDAP_H__ #include <ldap.h> #include <sys/types.h> #include "class.h" CLASS(AuthLdap) { LDAP * ldap; char * url; char * base_dn; int version; size_t nbase_dn; }; #endif // __AUTH_LDAP_H__ // vim: set ts=4 sw=4: