stanza_router: Catch and log an error case which I don't think should happen (but sometimes seems to)

This commit is contained in:
Matthew Wild 2009-07-10 02:50:57 +01:00
parent 0b3fb9b027
commit def653fa26

View file

@ -173,7 +173,10 @@ function core_route_stanza(origin, stanza)
core_post_stanza(origin, stanza);
elseif origin.type == "c2s" then
-- Remote host
if not hosts[from_host].disallow_s2s then
if not hosts[from_host] then
log("error", "No hosts[from_host] (please report): %s", tostring(stanza));
end
if (not hosts[from_host]) or (not hosts[from_host].disallow_s2s) then
local xmlns = stanza.attr.xmlns;
--stanza.attr.xmlns = "jabber:server";
stanza.attr.xmlns = nil;