aboutsummaryrefslogtreecommitdiffstats
path: root/core/hostmanager.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-11-10 20:28:20 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-11-10 20:28:20 +0500
commitdc00ab5c71ec7cce068e4baeab1aba4933377391 (patch)
tree04487f30352aaa89c6e14c436dc1522e58edad15 /core/hostmanager.lua
parent557bad86f76f900f26cd510808399faf18e4e213 (diff)
downloadprosody-dc00ab5c71ec7cce068e4baeab1aba4933377391.tar.gz
prosody-dc00ab5c71ec7cce068e4baeab1aba4933377391.zip
hostmanager: Added function get_children(host) which copies componentmanager.get_children(host).
Diffstat (limited to 'core/hostmanager.lua')
-rw-r--r--core/hostmanager.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua
index 0c91dd80..445ef0fb 100644
--- a/core/hostmanager.lua
+++ b/core/hostmanager.lua
@@ -9,6 +9,8 @@
local configmanager = require "core.configmanager";
local modulemanager = require "core.modulemanager";
local events_new = require "util.events".new;
+local disco_items = require "util.multitable".new();
+local NULL = {};
local uuid_gen = require "util.uuid".generate;
@@ -69,6 +71,7 @@ function activate(host, host_config)
host_session.type = "component";
end
hosts[host] = host_session;
+ disco_items:set(host:match("%.(.*)") or "*", host, true);
for option_name in pairs(host_config.core) do
if option_name:match("_ports$") or option_name:match("_interface$") then
log("warn", "%s: Option '%s' has no effect for virtual hosts - put it in the server-wide section instead", host, option_name);
@@ -119,11 +122,13 @@ function deactivate(host, reason)
end
hosts[host] = nil;
+ disco_items:remove(host:match("%.(.*)") or "*", host);
prosody_events.fire_event("host-deactivated", host);
log("info", "Deactivated host: %s", host);
end
-function getconfig(name)
+function get_children(host)
+ return disco_items:get(host) or NULL;
end
return _M;