diff options
Diffstat (limited to 'plugins/mod_component.lua')
-rw-r--r-- | plugins/mod_component.lua | 4 |
1 files changed, 0 insertions, 4 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; |