componentmanager, hostmanager, modulemanager, mod_component: Got rid of the useless hosts[*].connected property.

This commit is contained in:
Waqas Hussain 2010-11-10 03:39:38 +05:00
parent e75ae6d76d
commit 67804ef1a3
4 changed files with 3 additions and 8 deletions

View file

@ -29,7 +29,6 @@ local function on_destroy(session, err)
main_session = nil;
send = nil;
session.on_destroy = nil;
hosts[session.host].connected = nil;
end
end
@ -98,7 +97,6 @@ function handle_component_auth(event)
send = session.send;
main_session = session;
session.on_destroy = on_destroy;
hosts[session.host].connected = true;
log("info", "Component successfully registered");
else
log("error", "Multiple components bound to the same address, first one wins (TODO: Implement stanza distribution)");