Software /
code /
prosody
Diff
core/stanza_router.lua @ 3586:78ed7ad330ab
componentmanager, stanza_router: Get rid of componentmanager.handle_stanza().
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 10 Nov 2010 02:51:36 +0500 |
parent | 3539:8bbd965267b2 |
child | 4130:c3508071af47 |
line wrap: on
line diff
--- a/core/stanza_router.lua Wed Nov 10 02:50:35 2010 +0500 +++ b/core/stanza_router.lua Wed Nov 10 02:51:36 2010 +0500 @@ -12,7 +12,6 @@ local tostring = tostring; local st = require "util.stanza"; local send_s2s = require "core.s2smanager".send_to_host; -local component_handle_stanza = require "core.componentmanager".handle_stanza; local jid_split = require "util.jid".split; local jid_prepped_split = require "util.jid".prepped_split; @@ -172,11 +171,6 @@ if h then if h.events.fire_event(stanza.name..to_type, event_data) then return; end -- do processing if to_self and h.events.fire_event(stanza.name..'/self', event_data) then return; end -- do processing - - if h.type == "component" then - component_handle_stanza(origin, stanza); - return; - end handle_unhandled_stanza(h.host, origin, stanza); else core_route_stanza(origin, stanza);