Beginning of new routing logic

This commit is contained in:
Matthew Wild 2008-08-26 13:14:43 +01:00
parent f2dc5a554f
commit 5f1085df7e

View file

@ -50,6 +50,19 @@ function connect_host(host)
hosts[host] = { type = "remote", sendbuffer = {} };
end
local function route_stanza(stanza)
if not stanza.attr.to then
-- Has no 'to' attribute, handle internally
end
local node, host, resource = jid.split(stanza.attr.to);
if host and hosts[host] and hosts[host].type == "local" then
-- Is a local host, handle internally
else
-- Is not for us or a local user, route accordingly
end
end
local function send_to(session, to, stanza)
local node, host, resource = jid.split(to);
if not hosts[host] then