aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-11-28 02:42:02 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-11-28 02:42:02 +0500
commit339e703edd098189b555907065fe76c243d542a1 (patch)
treee68ef8fbcf9e7aeae8f548796bac7d8ff5d1a16e /plugins
parent5c91168bc8d4746e82478a208c8d087145d956fe (diff)
downloadprosody-339e703edd098189b555907065fe76c243d542a1.tar.gz
prosody-339e703edd098189b555907065fe76c243d542a1.zip
mod_iq: Optimized a bit more (fewer table accesses).
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_iq.lua15
1 files changed, 9 insertions, 6 deletions
diff --git a/plugins/mod_iq.lua b/plugins/mod_iq.lua
index 256a9419..c201a465 100644
--- a/plugins/mod_iq.lua
+++ b/plugins/mod_iq.lua
@@ -36,9 +36,10 @@ module:hook("iq/bare", function(data)
-- TODO fire post processing events
if type == "get" or type == "set" then
- local ret = module:fire_event("iq/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
+ local child = stanza.tags[1];
+ local ret = module:fire_event("iq/bare/"..child.attr.xmlns..":"..child.name, data);
if ret ~= nil then return ret; end
- return module:fire_event("iq-"..type.."/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
+ return module:fire_event("iq-"..type.."/bare/"..child.attr.xmlns..":"..child.name, data);
else
module:fire_event("iq-"..type.."/bare/"..stanza.attr.id, data);
return true;
@@ -51,9 +52,10 @@ module:hook("iq/self", function(data)
local type = stanza.attr.type;
if type == "get" or type == "set" then
- local ret = module:fire_event("iq/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
+ local child = stanza.tags[1];
+ local ret = module:fire_event("iq/self/"..child.attr.xmlns..":"..child.name, data);
if ret ~= nil then return ret; end
- return module:fire_event("iq-"..type.."/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
+ return module:fire_event("iq-"..type.."/self/"..child.attr.xmlns..":"..child.name, data);
else
module:fire_event("iq-"..type.."/self/"..stanza.attr.id, data);
return true;
@@ -66,9 +68,10 @@ module:hook("iq/host", function(data)
local type = stanza.attr.type;
if type == "get" or type == "set" then
- local ret = module:fire_event("iq/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
+ local child = stanza.tags[1];
+ local ret = module:fire_event("iq/host/"..child.attr.xmlns..":"..child.name, data);
if ret ~= nil then return ret; end
- return module:fire_event("iq-"..type.."/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
+ return module:fire_event("iq-"..type.."/host/"..child.attr.xmlns..":"..child.name, data);
else
module:fire_event("iq-"..type.."/host/"..stanza.attr.id, data);
return true;