Mercurial > prosody-modules
view mod_firewall/definitions.lib.lua @ 1594:620cc035ae1e
mod_admin_message: New IM-based administration console
This module provides a console over XMPP.
All the commands of the mod_admin_telnet module are available to Prosody admins
from an XMPP client.
| author | Mikael Berthe <mikael@lilotux.net> |
|---|---|
| date | Sun, 25 Jan 2015 19:52:39 +0100 |
| parents | 197af8440ffb |
| children | 92602cfac751 |
line wrap: on
line source
local definition_handlers = {}; local new_throttle = require "util.throttle".create; function definition_handlers.ZONE(zone_name, zone_members) local zone_member_list = {}; for member in zone_members:gmatch("[^, ]+") do zone_member_list[#zone_member_list+1] = member; end return set.new(zone_member_list)._items; end function definition_handlers.RATE(name, line) local rate = assert(tonumber(line:match("([%d.]+)")), "Unable to parse rate"); local burst = tonumber(line:match("%(%s*burst%s+([%d.]+)%s*%)")) or 1; return new_throttle(rate*burst, burst); end return definition_handlers;
