mod_c2s_limit_sessions/mod_c2s_limit_sessions.lua
author Kim Alvefur <zash@zash.se>
Sun, 25 Jun 2023 11:12:07 +0200
changeset 5572 540beba5b75b
parent 1366 f581210093a7
permissions -rw-r--r--
mod_http_oauth2: Always show list of requested scopes Upon further reflection, these are probably too important to hide behind a <details> thing.

-- 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);