File

mod_statistics_auth/mod_statistics_auth.lua @ 6250:c6afc572e316

mod_warn_legacy_tls: update Compability diff --git a/mod_warn_legacy_tls/README.md b/mod_warn_legacy_tls/README.md --- a/mod_warn_legacy_tls/README.md +++ b/mod_warn_legacy_tls/README.md @@ -43,5 +43,6 @@ legacy_tls_versions = { "TLSv1", "TLSv1. Prosody-Version Status --------------- --------------------- -trunk Works as of 24-12-16 +trunk Works as of 25-05-25 +0.13 Works 0.12 Works
author Menel <menel@snikket.de>
date Mon, 12 May 2025 11:00:48 +0200
parent 1440:78133eb11e7d
line wrap: on
line source

-- mod_statistics_auth
module:set_global();

local auth_ok, auth_fail = 0, 0

function module.add_host(module)
	module:hook("authentication-success", function(event)
		auth_ok = auth_ok + 1
	end);
	module:hook("authentication-failure", function(event)
		auth_fail = auth_fail + 1
	end);
end

module:provides("statistics", {
	statistics = {
		c2s_auth = {
			get = function ()
				return auth_ok;
			end;
			tostring = tostring;
		};
		c2s_authfail = {
			get = function ()
				return auth_fail;
			end;
			tostring = tostring;
		};
	}
});