net.server_epoll: Skip delayed continuation read on paused connections

This should prevent #1333 in cases where LuaSockets buffer is "dirty",
i.e. contains more data after a read, where it gets resumed with a
short delay.
This commit is contained in:
Kim Alvefur 2019-03-28 12:52:55 +01:00
parent e34e8e845d
commit c422e8f134

View file

@ -373,7 +373,7 @@ function interface:onreadable()
end
end
if not self.conn then return; end
if self.conn:dirty() then
if self._wantread and self.conn:dirty() then
self:setreadtimeout(false);
self:pausefor(cfg.read_retry_delay);
else