Server 0.0.1
HTTP/REST server implementation

src/auth/interface/auth.c

Go to the documentation of this file.
00001 
00023 #include "auth/auth.h"
00024 #include "auth/credential.h"
00025 #include "auth/interface/auth.h"
00026 
00027 const struct interface i_Auth = {
00028         "auth",
00029         1
00030 };
00031 
00032 int
00033 authenticate(void * auth, Credential cred)
00034 {
00035         int ret;
00036 
00037         RETCALL(auth, Auth, authenticate, ret, cred);
00038 
00039         return ret;
00040 }
00041 
00042 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines