Software /
code /
prosody-modules
File
mod_firewall/definitions.lib.lua @ 1216:81a3bf8aba90
mod_component_client: Use the net.server connection abstraction for sending whitespace keep-alive, and not the raw socket (fixes a traceback which lead to an infinite timer loop in libevent)
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Mon, 28 Oct 2013 11:55:59 -0400 |
parent | 999:197af8440ffb |
child | 1863: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;