From 4436104929fb437fd0e323fcc6e542323db1aed6 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Sun, 3 Mar 2013 21:32:46 +0100 Subject: New feature: Added config option auth_disable_internal By setting this config option in the eurephia database, eurephia will expect all user account/certificate links to be set up with an external plug-in for username/password authentications. Further, it is now ensured that system configuration issues or general failures not related to the user authentication itself, is not counted as a login attempt. Signed-off-by: David Sommerseth --- common/eurephia_context.h | 1 + 1 file changed, 1 insertion(+) (limited to 'common') diff --git a/common/eurephia_context.h b/common/eurephia_context.h index f8cf4ba..b21dde8 100644 --- a/common/eurephia_context.h +++ b/common/eurephia_context.h @@ -69,6 +69,7 @@ typedef struct { #else void *fwcfg; /**< Dummy pointer, if the firewall API is not enabled */ #endif + unsigned int nointernalauth; /**< If set, don't use internal eurephia authentication */ eAuthPluginCTX *authplugs; /**< Authentication plug-in contexts. May be NULL */ char *server_salt; /**< The in-memory password salt, used for the password cache */ eurephiaLOG *log; /**< Log context, used by eurephia_log() */ -- cgit