diff options
author | Kim Alvefur <zash@zash.se> | 2013-06-11 21:36:15 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-06-11 21:36:15 +0200 |
commit | 707befd0eaee86e6d80d7b0b539abf78f2fd23a5 (patch) | |
tree | b32edde961413150280e7ba6efa7492ae42b60bc /plugins/mod_s2s | |
parent | 6af157e1f8bafe7dec7adf3b0834314fd79d0b39 (diff) | |
download | prosody-707befd0eaee86e6d80d7b0b539abf78f2fd23a5.tar.gz prosody-707befd0eaee86e6d80d7b0b539abf78f2fd23a5.zip |
mod_c2s, mod_s2s: Fire an event on read timeouts
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index bce617ca..5e50e88b 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -135,6 +135,10 @@ function route_to_new_session(event) return true; end +local function keepalive(event) + return event.session.sends2s(' '); +end + function module.add_host(module) if module:get_option_boolean("disallow_s2s", false) then module:log("warn", "The 'disallow_s2s' config option is deprecated, please see http://prosody.im/doc/s2s#disabling"); @@ -143,6 +147,7 @@ function module.add_host(module) module:hook("route/remote", route_to_existing_session, -1); module:hook("route/remote", route_to_new_session, -10); module:hook("s2s-authenticated", make_authenticated, -1); + module:hook("s2s-read-timeout", keepalive, -1); end -- Stream is authorised, and ready for normal stanzas @@ -628,7 +633,7 @@ end function listener.onreadtimeout(conn) local session = sessions[conn]; if session then - return session.sends2s(' '); + return (hosts[session.host] or prosody).events.fire_event("s2s-read-timeout", { session = session }); end end |