|
Server 0.0.1
HTTP/REST server implementation
|
00001 00023 #ifndef __AUTH_LDAP_H__ 00024 #define __AUTH_LDAP_H__ 00025 00026 #include <ldap.h> 00027 #include <sys/types.h> 00028 00029 #include "class.h" 00030 00031 CLASS(AuthLdap) { 00032 LDAP * ldap; 00033 char * url; 00034 char * base_dn; 00035 int version; 00036 size_t nbase_dn; 00037 }; 00038 00039 #endif // __AUTH_LDAP_H__ 00040 00041 // vim: set ts=4 sw=4: