mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Separate handling of "closed" from other errors
The intent is to ensure 'ondisconnect' only gets called once, while giving buffered outgoing data a last chance to be delivered via the :close() path in case the connection was only shutdown in one direction.
This commit is contained in:
parent
7e8a3af45f
commit
d22a31530a
1 changed files with 7 additions and 7 deletions
|
@ -456,14 +456,14 @@ function interface:onreadable()
|
|||
self:onconnect();
|
||||
self:onincoming(partial, err);
|
||||
end
|
||||
if err ~= "timeout" then
|
||||
if err == "closed" then
|
||||
self:debug("Connection closed by remote");
|
||||
else
|
||||
self:debug("Read error, closing (%s)", err);
|
||||
end
|
||||
if err == "closed" and self._connected then
|
||||
self:debug("Connection closed by remote");
|
||||
self:close(err);
|
||||
return;
|
||||
elseif err ~= "timeout" then
|
||||
self:debug("Read error, closing (%s)", err);
|
||||
self:on("disconnect", err);
|
||||
self:close();
|
||||
self:destroy();
|
||||
return;
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue