mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_c2s: Don't try to keep alive sessions where the stream is not (yet) open
This commit is contained in:
parent
0c9ea08015
commit
8631e529ba
1 changed files with 4 additions and 1 deletions
|
@ -294,7 +294,10 @@ function listener.onreadtimeout(conn)
|
|||
end
|
||||
|
||||
local function keepalive(event)
|
||||
return event.session.send(' ');
|
||||
local session = event.session;
|
||||
if not session.notopen then
|
||||
return event.session.send(' ');
|
||||
end
|
||||
end
|
||||
|
||||
function listener.associate_session(conn, session)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue