mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_c2s,mod_s2s: Fire event just before writes
Could allow e.g. a XEP-0198 implementation to efficiently send ack requests at optimal times without using timers or nextTick.
This commit is contained in:
parent
d06ae16295
commit
48216c1dc8
2 changed files with 14 additions and 0 deletions
|
@ -393,6 +393,13 @@ function listener.ondrain(conn)
|
|||
end
|
||||
end
|
||||
|
||||
function listener.onpredrain(conn)
|
||||
local session = sessions[conn];
|
||||
if session then
|
||||
return (hosts[session.host] or prosody).events.fire_event("c2s-pre-ondrain", { session = session });
|
||||
end
|
||||
end
|
||||
|
||||
local function keepalive(event)
|
||||
local session = event.session;
|
||||
if not session.notopen then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue