mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Rearranged the code a little.
This commit is contained in:
parent
42993c2ec2
commit
6bc1c5d24a
1 changed files with 1 additions and 4 deletions
|
@ -83,7 +83,6 @@ function handle_component_auth(event)
|
|||
return true;
|
||||
end
|
||||
|
||||
|
||||
-- Authenticated now
|
||||
log("info", "Component authenticated: %s", session.host);
|
||||
|
||||
|
@ -95,14 +94,12 @@ function handle_component_auth(event)
|
|||
main_session = session;
|
||||
session.on_destroy = on_destroy;
|
||||
log("info", "Component successfully registered");
|
||||
session.send(st.stanza("handshake"));
|
||||
else
|
||||
log("error", "Multiple components bound to the same address, first one wins (TODO: Implement stanza distribution)");
|
||||
session:close{ condition = "conflict", text = "Component already connected" };
|
||||
return true;
|
||||
end
|
||||
|
||||
-- Signal successful authentication
|
||||
session.send(st.stanza("handshake"));
|
||||
return true;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue