summaryrefslogtreecommitdiffstats
path: root/auth/eurephia_authplugin.c
Commit message (Collapse)AuthorAgeFilesLines
* auth plugin: Added a possibility for auth plug-ins to close down properlyDavid Sommerseth2013-03-071-0/+4
| | | | | | | This optional function may be declared in the auth-plugins and will be called via the eAuthPlugin_Close() function. Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
* auth plug-in: Extended the API to have a PluginInit() functionDavid Sommerseth2013-03-041-1/+59
| | | | | | This can be used to pass a configuration to the authentication plug-in. Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
* auth plug-in: Made the PluginInfo() function more informativeDavid Sommerseth2013-03-041-2/+6
| | | | | | | This new PluginInfo() will return a struct instead, containing all the needed plug-in info. It also replaces the APIversion() function completely. Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
* Added the first stab of an authentication plug-in frameworkDavid Sommerseth2013-03-031-0/+162
This enables a run-time loadable support for other authentication modules. This can be used to make eurephia authenticate user's passwords against other sources than the local eurephia database itself. Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>