Software /
code /
prosody-modules
File
mod_s2s_keepalive/mod_s2s_keepalive.lua @ 3750:9002c8a2165f
mod_http_muc_log: Refactor calendarization of date list into a template filter BC
This breaks any custom templates using the calendar data structure.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 17 Nov 2019 15:16:23 +0100 |
parent | 3723:427879b46061 |
child | 3764:07a1faa24261 |
line wrap: on
line source
local st = require "util.stanza"; local keepalive_servers = module:get_option_set("keepalive_servers"); local keepalive_interval = module:get_option_number("keepalive_interval", 60); local host = module.host; local function send_pings() for remote_domain, session in pairs(hosts[host].s2sout) do if session.type == "s2sout" -- as opposed to _unauthed and (not(keepalive_servers) or keepalive_servers:contains(remote_domain)) then session.sends2s(st.iq({ to = remote_domain, type = "get", from = host, id = "keepalive" }) :tag("ping", { xmlns = "urn:xmpp:ping" }) ); -- Note: We don't actually check if this comes back. end end for session in pairs(prosody.incoming_s2s) do if session.type == "s2sin" -- as opposed to _unauthed and (not(keepalive_servers) or keepalive_servers:contains(session.from_host)) then session.sends2s " "; -- If the connection is dead, this should make it time out. end end return keepalive_interval; end module:add_timer(keepalive_interval, send_pings);