mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_csi_simple: Unlock writes after event, to allow things to be queued
E.g. mod_smacks could queue an <r>, which would be more likely to be included in the same write and TCP segment as the previously buffered data, reducing syscalls and network packets needing to be sent.
This commit is contained in:
parent
eecabd740d
commit
49e86e78c5
1 changed files with 1 additions and 1 deletions
|
@ -124,9 +124,9 @@ local function manage_buffer(stanza, session)
|
|||
end
|
||||
flush_reasons:with_labels(why or "important"):add(1);
|
||||
session.log("debug", "Flushing buffer (%s; queue size is %d)", why or "important", session.csi_counter);
|
||||
session.conn:resume_writes();
|
||||
session.state = "flushing";
|
||||
module:fire_event("csi-flushing", { session = session });
|
||||
session.conn:resume_writes();
|
||||
else
|
||||
session.log("debug", "Holding buffer (%s; queue size is %d)", why or "unimportant", session.csi_counter);
|
||||
stanza = with_timestamp(stanza, jid.join(session.username, session.host))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue