Mercurial > prosody-modules
view mod_c2s_limit_sessions/mod_c2s_limit_sessions.lua @ 4102:4e7ff27c212c
mod_lastlog2: Fix 'registered' event (Thanks Ge0rG)
Looks like this event was not updated for the map change, it's still how
it was in mod_lastlog(1)
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 11 Sep 2020 16:45:47 +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);
