mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.adminstream: Set a read timeout handler
So that net.server doesn't close the connection on inactivity.
This commit is contained in:
parent
4bab7af07d
commit
a6c4ce73ef
1 changed files with 9 additions and 0 deletions
|
@ -247,6 +247,11 @@ local function new_server(sessions, stanza_handler)
|
|||
sessions[conn] = nil;
|
||||
end
|
||||
end
|
||||
|
||||
function listeners.onreadtimeout(conn)
|
||||
conn:send(" ");
|
||||
end
|
||||
|
||||
return {
|
||||
listeners = listeners;
|
||||
};
|
||||
|
@ -315,6 +320,10 @@ local function new_client()
|
|||
client.conn = nil;
|
||||
end
|
||||
|
||||
function listeners.onreadtimeout(conn)
|
||||
conn:send(" ");
|
||||
end
|
||||
|
||||
client.listeners = listeners;
|
||||
|
||||
return client;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue