mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Fix streaming downloads (thanks Menel)
ff4e34c448a4 broke the way net.http.server streams downloads from disk because it made writes from the ondrain callback no longer reset the want-write flag, causing the download to halt. Writes from the predrain handler still must not trigger anything but additions to the buffer, since it is about to do all the socket writing already.
This commit is contained in:
parent
2921cef48f
commit
8ac98af8b8
1 changed files with 1 additions and 1 deletions
|
@ -513,9 +513,9 @@ function interface:onwritable()
|
|||
else
|
||||
self.writebuffer = nil;
|
||||
end
|
||||
self._writing = nil;
|
||||
self:setwritetimeout(false);
|
||||
self:ondrain(); -- Be aware of writes in ondrain
|
||||
self._writing = nil;
|
||||
return ok;
|
||||
elseif partial then
|
||||
self:debug("Sent %d out of %d buffered bytes", partial, #data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue