Software /
code /
prosody
Diff
plugins/mod_s2s/mod_s2s.lua @ 11118:ece430d49809 0.11 0.11.7
mod_c2s,mod_s2s: Make stanza size limits configurable
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 31 May 2020 22:39:34 +0200 |
parent | 11018:bacca65ce107 |
child | 11226:b3ae48362f78 |
line wrap: on
line diff
--- a/plugins/mod_s2s/mod_s2s.lua Wed Sep 30 09:46:30 2020 +0100 +++ b/plugins/mod_s2s/mod_s2s.lua Sun May 31 22:39:34 2020 +0200 @@ -37,6 +37,7 @@ local secure_domains, insecure_domains = module:get_option_set("s2s_secure_domains", {})._items, module:get_option_set("s2s_insecure_domains", {})._items; local require_encryption = module:get_option_boolean("s2s_require_encryption", false); +local stanza_size_limit = module:get_option_number("s2s_stanza_size_limit"); -- TODO come up with a sensible default (util.xmppstream defaults to 10M) local measure_connections = module:measure("connections", "amount"); local measure_ipv6 = module:measure("ipv6", "amount"); @@ -550,7 +551,7 @@ -- Session initialization logic shared by incoming and outgoing local function initialize_session(session) - local stream = new_xmpp_stream(session, stream_callbacks); + local stream = new_xmpp_stream(session, stream_callbacks, stanza_size_limit); session.thread = runner(function (stanza) if stanza.name == nil then