mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Beginning of new routing logic
This commit is contained in:
parent
f2dc5a554f
commit
5f1085df7e
1 changed files with 15 additions and 2 deletions
17
main.lua
17
main.lua
|
@ -8,7 +8,7 @@ require "lxp"
|
||||||
function log(type, area, message)
|
function log(type, area, message)
|
||||||
print(type, area, message);
|
print(type, area, message);
|
||||||
end
|
end
|
||||||
|
|
||||||
require "core.stanza_dispatch"
|
require "core.stanza_dispatch"
|
||||||
local init_xmlhandlers = require "core.xmlhandlers"
|
local init_xmlhandlers = require "core.xmlhandlers"
|
||||||
require "core.rostermanager"
|
require "core.rostermanager"
|
||||||
|
@ -16,7 +16,7 @@ require "core.offlinemessage"
|
||||||
require "core.usermanager"
|
require "core.usermanager"
|
||||||
require "util.stanza"
|
require "util.stanza"
|
||||||
require "util.jid"
|
require "util.jid"
|
||||||
|
|
||||||
-- Locals for faster access --
|
-- Locals for faster access --
|
||||||
local t_insert = table.insert;
|
local t_insert = table.insert;
|
||||||
local t_concat = table.concat;
|
local t_concat = table.concat;
|
||||||
|
@ -50,6 +50,19 @@ function connect_host(host)
|
||||||
hosts[host] = { type = "remote", sendbuffer = {} };
|
hosts[host] = { type = "remote", sendbuffer = {} };
|
||||||
end
|
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 function send_to(session, to, stanza)
|
||||||
local node, host, resource = jid.split(to);
|
local node, host, resource = jid.split(to);
|
||||||
if not hosts[host] then
|
if not hosts[host] then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue