mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_csi_simple: Report whitespace keepalives
Single space character is sent by mod_c2s when a session has been silent for some time. This should account for the vast majority of raw strings passing through here. If this is not the case then having stats to say otherwise will be interesting.
This commit is contained in:
parent
9b7ab06ef3
commit
c34f2c9ebf
1 changed files with 3 additions and 2 deletions
|
@ -16,8 +16,9 @@ local queue_size = module:get_option_number("csi_queue_size", 256);
|
|||
local important_payloads = module:get_option_set("csi_important_payloads", { });
|
||||
|
||||
function is_important(stanza) --> boolean, reason: string
|
||||
if type(stanza) == "string" then
|
||||
-- whitespace pings etc
|
||||
if stanza == " " then
|
||||
return true, "whitespace keepalive";
|
||||
elseif type(stanza) == "string" then
|
||||
return true, "raw data";
|
||||
elseif not st.is_stanza(stanza) then
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue