mod_component: Components start out as component_unauthed until successful authentication (thanks xnyhps)

This commit is contained in:
Matthew Wild 2012-04-30 01:02:39 +01:00
parent dacec4fc97
commit b56a39255a

View file

@ -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]+$");