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:
Kim Alvefur 2021-08-16 12:45:14 +02:00
parent d06ae16295
commit 48216c1dc8
2 changed files with 14 additions and 0 deletions

View file

@ -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