You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
282 B
19 lines
282 B
#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:
|