mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
7cb3ec61d5
commit
92cec56e97
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue