mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_component: Cleaned up unused variables.
This commit is contained in:
parent
8bcd704830
commit
feb814d958
1 changed files with 1 additions and 12 deletions
|
@ -14,25 +14,14 @@ local hosts = _G.hosts;
|
|||
|
||||
local t_concat = table.concat;
|
||||
|
||||
local lxp = require "lxp";
|
||||
local logger = require "util.logger";
|
||||
local config = require "core.configmanager";
|
||||
local connlisteners = require "net.connlisteners";
|
||||
local cm_register_component = require "core.componentmanager".register_component;
|
||||
local cm_deregister_component = require "core.componentmanager".deregister_component;
|
||||
local uuid_gen = require "util.uuid".generate;
|
||||
local sha1 = require "util.hashes".sha1;
|
||||
local st = require "util.stanza";
|
||||
local init_xmlhandlers = require "core.xmlhandlers";
|
||||
|
||||
local sessions = {};
|
||||
|
||||
local log = module._log;
|
||||
|
||||
local component_listener = { default_port = 5347; default_mode = "*a"; default_interface = config.get("*", "core", "component_interface") or "127.0.0.1" };
|
||||
|
||||
local xmlns_component = 'jabber:component:accept';
|
||||
|
||||
--- Handle authentication attempts by components
|
||||
function handle_component_auth(session, stanza)
|
||||
log("info", "Handling component auth");
|
||||
|
@ -80,4 +69,4 @@ function handle_component_auth(session, stanza)
|
|||
session.send(st.stanza("handshake"));
|
||||
end
|
||||
|
||||
module:add_handler("component", "handshake", xmlns_component, handle_component_auth);
|
||||
module:add_handler("component", "handshake", "jabber:component:accept", handle_component_auth);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue