net.server_epoll: Split, attempt to clarify dirty noise message

Only relevant because a "dirty" connection (with incoming data in
LuaSocket's buffer) does not count as "readable" according to epoll, so
special care needs to be taken to keep on processing it.
This commit is contained in:
Kim Alvefur 2021-08-16 20:15:38 +02:00
parent 48216c1dc8
commit 76189039ae

View file

@ -801,8 +801,9 @@ function interface:pausefor(t)
self._pausefor = addtimer(t, function ()
self._pausefor = nil;
self:set(true);
self:noise("Resuming after pause, connection is %s", not self.conn and "missing" or self.conn:dirty() and "dirty" or "clean");
self:noise("Resuming after pause");
if self.conn and self.conn:dirty() then
self:noise("Have buffered incoming data to process");
self:onreadable();
end
end);