Software /
code /
prosody
Changeset
4818:3bda6fc02652
mod_s2s: Become a shared module (yay)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 04 May 2012 01:50:17 +0100 |
parents | 4817:9cc1d3e49f19 |
children | 4819:4fa47fc6f20c |
files | plugins/mod_s2s/mod_s2s.lua |
diffstat | 1 files changed, 14 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_s2s/mod_s2s.lua Fri May 04 01:49:13 2012 +0100 +++ b/plugins/mod_s2s/mod_s2s.lua Fri May 04 01:50:17 2012 +0100 @@ -67,7 +67,8 @@ session.sendq = nil; end -module:hook("route/remote", function (event) +-- Handles stanzas to existing s2s sessions +function route_to_existing_session(event) local from_host, to_host, stanza = event.from_host, event.to_host, event.stanza; if not hosts[from_host] then log("warn", "Attempt to send stanza from %s - a host we don't serve", from_host); @@ -101,9 +102,10 @@ return true; end end -end, 200); +end -module:hook("route/remote", function (event) +-- Create a new outgoing session for a stanza +function route_to_new_session(event) local from_host, to_host, stanza = event.from_host, event.to_host, event.stanza; log("debug", "opening a new outgoing connection for this stanza"); local host_session = s2s_new_outgoing(from_host, to_host); @@ -119,7 +121,15 @@ return false; end return true; -end, 100); +end + +function module.add_host(module) + if module:get_option_boolean("disallow_s2s", false) then + return nil, "This host has disallow_s2s set"; + end + module:hook("route/remote", route_to_existing_session, 200); + module:hook("route/remote", route_to_new_session, 100); +end --- Helper to check that a session peer's certificate is valid local function check_cert_status(session)