summaryrefslogtreecommitdiffstats
path: root/app/acf-util/logon-model.lua
diff options
context:
space:
mode:
Diffstat (limited to 'app/acf-util/logon-model.lua')
-rw-r--r--app/acf-util/logon-model.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/acf-util/logon-model.lua b/app/acf-util/logon-model.lua
index 0cfba7f..3394445 100644
--- a/app/acf-util/logon-model.lua
+++ b/app/acf-util/logon-model.lua
@@ -45,9 +45,9 @@ end
mymodule.logon = function (self, logon)
logon.errtxt = "Logon Attempt Failed"
-- Check to see if we can log on this user id / ip addr
- local countevent = session.count_events(self.conf.sessiondir, logon.value.userid.value, session.hash_ip_addr(self.conf.clientip), self.conf.lockouttime, self.conf.lockouteventlimit)
+ local countevent = session.count_events(self.conf.sessiondir, logon.value.userid.value, self.conf.clientip, self.conf.lockouttime, self.conf.lockouteventlimit)
if countevent then
- session.record_event(self.conf.sessiondir, logon.value.userid.value, session.hash_ip_addr(self.conf.clientip))
+ session.record_event(self.conf.sessiondir, logon.value.userid.value, self.conf.clientip)
end
if false == countevent then
@@ -71,7 +71,7 @@ mymodule.logon = function (self, logon)
logon.errtxt = nil
else
-- We have a bad logon, log the event
- session.record_event(self.conf.sessiondir, logon.value.userid.value, session.hash_ip_addr(self.conf.clientip))
+ session.record_event(self.conf.sessiondir, logon.value.userid.value, self.conf.clientip)
end
end
return logon