mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Don't try to flush buffer on closed connections
Attempt to fix a bug where connections are somehow closed twice, leading to bad things happening elsewhere. With LuaSec, closed connections are generally already too closed to write anything to anyway since it does not support unidirectional shutdown.
This commit is contained in:
parent
ff00c6707f
commit
61b0c0cd3a
1 changed files with 2 additions and 1 deletions
|
@ -508,7 +508,8 @@ function interface:onreadable()
|
|||
end
|
||||
if err == "closed" and self._connected then
|
||||
self:debug("Connection closed by remote");
|
||||
self:close(err);
|
||||
self:on("disconnect", err);
|
||||
self:destroy();
|
||||
return;
|
||||
elseif err ~= "timeout" then
|
||||
self:debug("Read error, closing (%s)", err);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue