Mercurial > prosody-modules
view mod_adhoc/adhoc/adhoc.lib.lua @ 42:bbb3d3a90a70
mod_privacy: decrease the log messages count.
author | Thilo Cestonaro <thilo@cestona.ro> |
---|---|
date | Thu, 15 Oct 2009 11:38:57 +0200 |
parents | 58d326d86a9a |
children | adc9eff8adb2 |
line wrap: on
line source
local st = require "util.stanza"; local xmlns_cmd = "http://jabber.org/protocol/commands"; local _M = {}; function _cmdtag(desc, status, sessionid, action) local cmd = st.stanza("command", { xmlns = xmlns_cmd, node = desc.node, status = status }); if sessionid then cmd.attr.sessionid = sessionid; end if action then cmd.attr.action = action; end return cmd; end function _M.new(name, node, handler) return { name = name, node = node, handler = handler, cmdtag = _cmdtag }; end return _M;