mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_c2s: Make c2s_timeout timer reachable to allow access from other modules
E.g. the timeout could be extended under certain conditions.
This commit is contained in:
parent
75335ede73
commit
5dfd9d25cd
1 changed files with 3 additions and 1 deletions
|
@ -369,10 +369,12 @@ function listener.onconnect(conn)
|
|||
end
|
||||
|
||||
if c2s_timeout < math.huge then
|
||||
add_task(c2s_timeout, function ()
|
||||
session.c2s_timeout = add_task(c2s_timeout, function ()
|
||||
if session.type == "c2s_unauthed" then
|
||||
(session.log or log)("debug", "Connection still not authenticated after c2s_timeout=%gs, closing it", c2s_timeout);
|
||||
session:close("connection-timeout");
|
||||
else
|
||||
session.c2s_timeout = nil;
|
||||
end
|
||||
end);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue