From e75ae6d76d77c2337f3dadfe667ecd517dbbad36 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Wed, 10 Nov 2010 02:51:36 +0500 Subject: componentmanager, stanza_router: Get rid of componentmanager.handle_stanza(). --- core/componentmanager.lua | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'core/componentmanager.lua') diff --git a/core/componentmanager.lua b/core/componentmanager.lua index ea1fe868..f2f64a7d 100644 --- a/core/componentmanager.lua +++ b/core/componentmanager.lua @@ -57,22 +57,6 @@ if prosody and prosody.events then prosody.events.add_handler("server-starting", load_enabled_components); end -function handle_stanza(origin, stanza) - local node, host = jid_split(stanza.attr.to); - local component = nil; - if host then - if node then component = components[node.."@"..host]; end -- hack to allow hooking node@server - if not component then component = components[host]; end - end - if component then - log("debug", "%s stanza being handled by component: %s", stanza.name, host); - component(origin, stanza, hosts[host]); - else - log("error", "Component manager recieved a stanza for a non-existing component: "..tostring(stanza)); - default_component_handler(origin, stanza); - end -end - function create_component(host, component, events) -- TODO check for host well-formedness return { type = "component", host = host, connected = true, s2sout = {}, -- cgit v1.2.3