mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Handle LuaSec wantread/wantwrite conditions before callbacks (fixes #1333)
This prevents the :set(true) call from resuming a connection that was paused in the onincoming callback.
This commit is contained in:
parent
b6cff0ba5e
commit
e34e8e845d
1 changed files with 8 additions and 5 deletions
|
@ -355,15 +355,18 @@ function interface:onreadable()
|
|||
self:onconnect();
|
||||
self:on("incoming", data);
|
||||
else
|
||||
if err == "wantread" then
|
||||
self:set(true, nil);
|
||||
err = "timeout";
|
||||
elseif err == "wantwrite" then
|
||||
self:set(nil, true);
|
||||
err = "timeout";
|
||||
end
|
||||
if partial and partial ~= "" then
|
||||
self:onconnect();
|
||||
self:on("incoming", partial, err);
|
||||
end
|
||||
if err == "wantread" then
|
||||
self:set(true, nil);
|
||||
elseif err == "wantwrite" then
|
||||
self:set(nil, true);
|
||||
elseif err ~= "timeout" then
|
||||
if err ~= "timeout" then
|
||||
self:on("disconnect", err);
|
||||
self:destroy()
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue