mod_s2s: Advertise stanza size limit to other servers
authorKim Alvefur <zash@zash.se>
Tue, 16 Mar 2021 18:25:05 +0100
changeset 12809 d96e24bd54e1
parent 12808 3eef052c72d8
child 12810 751bdd412915
mod_s2s: Advertise stanza size limit to other servers So they can, like, not send big stanzas.
plugins/mod_s2s.lua
--- a/plugins/mod_s2s.lua	Tue Mar 16 18:17:05 2021 +0100
+++ b/plugins/mod_s2s.lua	Tue Mar 16 18:25:05 2021 +0100
@@ -518,6 +518,11 @@
 			end
 
 			if ( session.type == "s2sin" or session.type == "s2sout" ) or features.tags[1] then
+				if stanza_size_limit then
+					features:reset();
+					features:tag("stanza-size-limit", { xmlns = "xmpp:prosody.im/stream/limits", bytes = string.format("%d", stanza_size_limit) });
+				end
+
 				log("debug", "Sending stream features: %s", features);
 				session.sends2s(features);
 			else