view mod_c2s_limit_sessions/mod_c2s_limit_sessions.lua @ 6508:3044e14fcaa0

mod_storage_xmlarchive: Fix compatibility with Lua 5.5 Loop variables became immutable in Lua 5.5, so shadow it by reassigning to it.
author Link Mauve <linkmauve@linkmauve.fr>
date Tue, 07 Apr 2026 06:51:05 +0200
parents f581210093a7
children 317fb60e8cad
line wrap: on
line source

-- mod_c2s_limit_sessions

local next, count = next, require "util.iterators".count;

local max_resources = module:get_option_number("max_resources", 10);

local sessions = hosts[module.host].sessions;
module:hook("resource-bind", function(event)
	local session = event.session;
	if count(next, sessions[session.username].sessions) > max_resources then
		session:close{ condition = "policy-violation", text = "Too many resources" };
		return false
	end
end, -1);