mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_c2s,mod_s2s: Make stanza size limits configurable
This commit is contained in:
parent
4051f5e653
commit
958854febd
2 changed files with 4 additions and 2 deletions
|
@ -26,6 +26,7 @@ local log = module._log;
|
|||
local c2s_timeout = module:get_option_number("c2s_timeout", 300);
|
||||
local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5);
|
||||
local opt_keepalives = module:get_option_boolean("c2s_tcp_keepalives", module:get_option_boolean("tcp_keepalives", true));
|
||||
local stanza_size_limit = module:get_option_number("c2s_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");
|
||||
|
@ -262,7 +263,7 @@ function listener.onconnect(conn)
|
|||
|
||||
session.close = session_close;
|
||||
|
||||
local stream = new_xmpp_stream(session, stream_callbacks);
|
||||
local stream = new_xmpp_stream(session, stream_callbacks, stanza_size_limit);
|
||||
session.stream = stream;
|
||||
session.notopen = true;
|
||||
|
||||
|
|
|
@ -37,6 +37,7 @@ local secure_auth = module:get_option_boolean("s2s_secure_auth", false); -- One
|
|||
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 @@ end
|
|||
|
||||
-- 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue