view mod_compat_dialback/mod_compat_dialback.lua @ 4412:e5493a10c4d1

mod_cloud_notify: use stanza from mod_smacks to behave O(1) This uses the provided stanza in the ack-delayed smacks event to trigger push for this stanza only rather than iterating through the whole smacks queue to find the first unpushed stanza.
author tmolitor <thilo@eightysoft.de>
date Sat, 30 Jan 2021 07:17:33 +0100
parents 56f6a642fc67
children
line wrap: on
line source

-- Prosody IM
-- Copyright (C) 2008-2010 Matthew Wild
-- Copyright (C) 2008-2010 Waqas Hussain
--
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--

module:set_global();

module:hook("s2s-stream-features-legacy", function (data)
	if data.origin.type == "s2sin_unauthed" then
		data.features:tag("dialback", { xmlns='urn:xmpp:features:dialback' }):up();
	end
end);