diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-12-16 16:01:59 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-12-16 16:01:59 +0000 |
commit | ac28f69701b2189b085159bef9a9d83c4a15c51d (patch) | |
tree | aeacfe13ef75c2cbea9e0b12a8406e0df2e9592a /core | |
parent | 2257492bf95d4df370e3f97ca981043809761324 (diff) | |
download | prosody-ac28f69701b2189b085159bef9a9d83c4a15c51d.tar.gz prosody-ac28f69701b2189b085159bef9a9d83c4a15c51d.zip |
hostmanager: Add send() method to hosts
Diffstat (limited to 'core')
-rw-r--r-- | core/hostmanager.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index 9e74cd6b..0dd1d426 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -53,6 +53,17 @@ end prosody_events.add_handler("server-starting", load_enabled_hosts); +local function host_send(stanza) + local name, type = stanza.name, stanza.attr.type; + if type == "error" or (name == "iq" and type == "result") then + local dest_host_name = select(2, jid_split(stanza.attr.to)); + local dest_host = hosts[dest_host_name] or { type = "unknown" }; + log("warn", "Unhandled response sent to %s host %s: %s", dest_host.type, dest_host_name, tostring(stanza)); + return; + end + core_route_stanza(nil, stanza); +end + function activate(host, host_config) if hosts[host] then return nil, "The host "..host.." is already activated"; end host_config = host_config or configmanager.getconfig()[host]; @@ -63,6 +74,7 @@ function activate(host, host_config) events = events_new(); dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen(); disallow_s2s = configmanager.get(host, "core", "disallow_s2s"); + send = host_send; }; if not host_config.core.component_module then -- host host_session.type = "local"; |