|
Server 0.0.1
HTTP/REST server implementation
|
00001 00027 #ifndef __AUTH_AUTH_H__ 00028 #define __AUTH_AUTH_H__ 00029 00030 #include "class.h" 00031 #include "auth/ldap.h" 00032 00033 typedef enum e_AuthModule { 00034 AUTH_LDAP = 0 00035 } AuthModule; 00036 00037 CLASS(Auth) { 00038 }; 00039 00040 void * authCreateById(Auth, int); 00041 AuthLdap authCreateLdap(Auth); 00042 00043 #endif // __AUTH_AUTH_H__ 00044 00045 // vim: set ts=4 sw=4: