mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Restore wantread flag after pause (fixes #1354)
If a chunk of data has been received that is larger than the amount read at a time, then the connection is paused for a short time after which it tries to read some more. If, after that, there is still more data to read, it should do the same thing. However, because the "want read" flag is removed and was restored after the delayed reading, it would not schedule another delayed read.
This commit is contained in:
parent
33d32b5cb3
commit
6dfc361a6c
1 changed files with 1 additions and 1 deletions
|
@ -600,10 +600,10 @@ function interface:pausefor(t)
|
|||
self:set(false);
|
||||
self._pausefor = addtimer(t, function ()
|
||||
self._pausefor = nil;
|
||||
self:set(true);
|
||||
if self.conn and self.conn:dirty() then
|
||||
self:onreadable();
|
||||
end
|
||||
self:set(true);
|
||||
end);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue