diff options
author | Kim Alvefur <zash@zash.se> | 2014-07-04 22:52:34 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-07-04 22:52:34 +0200 |
commit | 8003a40b0a3895399912c5042e6e8af41c61eb04 (patch) | |
tree | 4ee710468ebed7a73d392f011b38e251640508f9 /plugins/adhoc | |
parent | 1440be730c44897aa5f1aed4cf7d7f87e4489334 (diff) | |
download | prosody-8003a40b0a3895399912c5042e6e8af41c61eb04.tar.gz prosody-8003a40b0a3895399912c5042e6e8af41c61eb04.zip |
mod_lastactivity, mod_legacyauth, mod_presence, mod_saslauth, mod_tls: Use the newer stanza:get_child APIs and optimize away some table lookups
Diffstat (limited to 'plugins/adhoc')
-rw-r--r-- | plugins/adhoc/adhoc.lib.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/adhoc/adhoc.lib.lua b/plugins/adhoc/adhoc.lib.lua index b544ddc8..5c90c91b 100644 --- a/plugins/adhoc/adhoc.lib.lua +++ b/plugins/adhoc/adhoc.lib.lua @@ -25,12 +25,13 @@ function _M.new(name, node, handler, permission) end function _M.handle_cmd(command, origin, stanza) - local sessionid = stanza.tags[1].attr.sessionid or uuid.generate(); + local cmdtag = stanza.tags[1] + local sessionid = cmdtag.attr.sessionid or uuid.generate(); local dataIn = {}; dataIn.to = stanza.attr.to; dataIn.from = stanza.attr.from; - dataIn.action = stanza.tags[1].attr.action or "execute"; - dataIn.form = stanza.tags[1]:child_with_ns("jabber:x:data"); + dataIn.action = cmdtag.attr.action or "execute"; + dataIn.form = cmdtag:get_child("x", "jabber:x:data"); local data, state = command:handler(dataIn, states[sessionid]); states[sessionid] = state; |