util.xmppstream: Allow dynamically configuring the stanza size limit for a stream

This may be useful for any plugins that want to experiment with different policies
for stanza size limits (e.g. unauthenticated vs authenticated streams).
This commit is contained in:
Matthew Wild 2021-05-10 17:03:27 +01:00
parent 7cb3ec61d5
commit 92cec56e97

View file

@ -293,6 +293,9 @@ local function new(session, stream_callbacks, stanza_size_limit)
return ok, err;
end,
set_session = meta.set_session;
set_stanza_size_limit = function (_, new_stanza_size_limit)
stanza_size_limit = new_stanza_size_limit;
end;
};
end