mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_component: Components start out as component_unauthed until successful authentication (thanks xnyhps)
This commit is contained in:
parent
fc11973174
commit
60c1421aa1
1 changed files with 2 additions and 1 deletions
|
@ -76,6 +76,7 @@ function module.add_host(module)
|
|||
send = session.send;
|
||||
session.on_destroy = on_destroy;
|
||||
session.component_validate_from = module:get_option_boolean("validate_from_addresses", true);
|
||||
session.type = "component";
|
||||
module:log("info", "External component successfully authenticated");
|
||||
session.send(st.stanza("handshake"));
|
||||
|
||||
|
@ -244,7 +245,7 @@ end
|
|||
|
||||
function listener.onconnect(conn)
|
||||
local _send = conn.write;
|
||||
local session = { type = "component", conn = conn, send = function (data) return _send(conn, tostring(data)); end };
|
||||
local session = { type = "component_unauthed", conn = conn, send = function (data) return _send(conn, tostring(data)); end };
|
||||
|
||||
-- Logging functions --
|
||||
local conn_name = "jcp"..tostring(conn):match("[a-f0-9]+$");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue