# HG changeset patch # User Waqas Hussain # Date 1291289025 -18000 # Node ID 10c3f6c6a04c46afa3b5a6217c30c21a43f56005 # Parent e5cc0fe5eec31d34765a0a2e20399d43535b6394 mod_tcpproxy: Give stanza handlers a negative priority, to allow mod_iq to process them first. diff -r e5cc0fe5eec3 -r 10c3f6c6a04c mod_tcpproxy/mod_tcpproxy.lua --- a/mod_tcpproxy/mod_tcpproxy.lua Thu Dec 02 16:23:22 2010 +0500 +++ b/mod_tcpproxy/mod_tcpproxy.lua Thu Dec 02 16:23:45 2010 +0500 @@ -108,14 +108,14 @@ proxy_component(event.origin, event.stanza); return true; end -module:hook("iq/bare", stanza_handler); -module:hook("message/bare", stanza_handler); -module:hook("presence/bare", stanza_handler); -module:hook("iq/full", stanza_handler); -module:hook("message/full", stanza_handler); -module:hook("presence/full", stanza_handler); -module:hook("iq/host", stanza_handler); -module:hook("message/host", stanza_handler); -module:hook("presence/host", stanza_handler); +module:hook("iq/bare", stanza_handler, -1); +module:hook("message/bare", stanza_handler, -1); +module:hook("presence/bare", stanza_handler, -1); +module:hook("iq/full", stanza_handler, -1); +module:hook("message/full", stanza_handler, -1); +module:hook("presence/full", stanza_handler, -1); +module:hook("iq/host", stanza_handler, -1); +module:hook("message/host", stanza_handler, -1); +module:hook("presence/host", stanza_handler, -1); require "core.componentmanager".register_component(host, function() end); -- COMPAT Prosody 0.7