diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-11-10 20:59:16 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-11-10 20:59:16 +0500 |
commit | d38fc9dce0db97545b1f8b5dd79be2868bd66c93 (patch) | |
tree | 0b9bc6f85b8cc29c750efef83e018f504b3d1e95 /plugins | |
parent | 072e5be5d27b809185daacc5e9b137f884b19fd1 (diff) | |
download | prosody-d38fc9dce0db97545b1f8b5dd79be2868bd66c93.tar.gz prosody-d38fc9dce0db97545b1f8b5dd79be2868bd66c93.zip |
prosody: Removed all references to componentmanager from Prosody, except the main componentmanager file.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_component.lua | 4 | ||||
-rw-r--r-- | plugins/mod_proxy65.lua | 3 | ||||
-rw-r--r-- | plugins/muc/mod_muc.lua | 8 |
3 files changed, 1 insertions, 14 deletions
diff --git a/plugins/mod_component.lua b/plugins/mod_component.lua index 1bbbd03d..4e1f31cb 100644 --- a/plugins/mod_component.lua +++ b/plugins/mod_component.lua @@ -15,8 +15,6 @@ local hosts = _G.hosts; local t_concat = table.concat; local config = require "core.configmanager"; -local cm_register_component = require "core.componentmanager".register_component; -local cm_deregister_component = require "core.componentmanager".deregister_component; local sha1 = require "util.hashes".sha1; local st = require "util.stanza"; @@ -55,8 +53,6 @@ module:hook("iq/host", handle_stanza); module:hook("message/host", handle_stanza); module:hook("presence/host", handle_stanza); -cm_register_component(module.host, function() end); - --- Handle authentication attempts by components function handle_component_auth(event) local session, stanza = event.origin, event.stanza; diff --git a/plugins/mod_proxy65.lua b/plugins/mod_proxy65.lua index e9b3a446..cb4c42a7 100644 --- a/plugins/mod_proxy65.lua +++ b/plugins/mod_proxy65.lua @@ -16,7 +16,6 @@ end local jid_split, jid_join, jid_compare = require "util.jid".split, require "util.jid".join, require "util.jid".compare; local st = require "util.stanza"; -local componentmanager = require "core.componentmanager"; local config_get = require "core.configmanager".get; local connlisteners = require "net.connlisteners"; local sha1 = require "util.hashes".sha1; @@ -185,7 +184,6 @@ local function get_stream_host(origin, stanza) end module.unload = function() - componentmanager.deregister_component(host); connlisteners.deregister(module.host .. ':proxy65'); end @@ -260,4 +258,3 @@ if not connlisteners.register(module.host .. ':proxy65', connlistener) then end connlisteners.start(module.host .. ':proxy65'); -component = componentmanager.register_component(host, function() end); diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 60602050..22d2664d 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -23,8 +23,6 @@ if restrict_room_creation then end end local muc_new_room = module:require "muc".new_room; -local register_component = require "core.componentmanager".register_component; -local deregister_component = require "core.componentmanager".deregister_component; local jid_split = require "util.jid".split; local jid_bare = require "util.jid".bare; local st = require "util.stanza"; @@ -163,8 +161,7 @@ module:hook("iq/host", stanza_handler); module:hook("message/host", stanza_handler); module:hook("presence/host", stanza_handler); -component = register_component(muc_host, function() end); -function component.send(stanza) -- FIXME do a generic fix +hosts[module.host].send = function(stanza) -- FIXME do a generic fix if stanza.attr.type == "result" or stanza.attr.type == "error" then core_post_stanza(component, stanza); else error("component.send only supports result and error stanzas at the moment"); end @@ -172,9 +169,6 @@ end prosody.hosts[module:get_host()].muc = { rooms = rooms }; -module.unload = function() - deregister_component(muc_host); -end module.save = function() return {rooms = rooms}; end |