mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Propagate returns from opportunistic writes
So that if a write ends up writing directly to the socket, it gets the actual return value
This commit is contained in:
parent
c611398c1f
commit
8318977ef4
1 changed files with 4 additions and 3 deletions
|
@ -477,7 +477,7 @@ function interface:onwritable()
|
|||
end
|
||||
self:setwritetimeout(false);
|
||||
self:ondrain(); -- Be aware of writes in ondrain
|
||||
return;
|
||||
return ok;
|
||||
elseif partial then
|
||||
self:debug("Sent %d out of %d buffered bytes", partial, #data);
|
||||
buffer[1] = data:sub(partial+1);
|
||||
|
@ -494,6 +494,7 @@ function interface:onwritable()
|
|||
elseif err ~= "timeout" then
|
||||
self:on("disconnect", err);
|
||||
self:destroy();
|
||||
return ok, err;
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -513,9 +514,9 @@ function interface:write(data)
|
|||
if not self._write_lock then
|
||||
if cfg.opportunistic_writes and not self._opportunistic_write then
|
||||
self._opportunistic_write = true;
|
||||
self:onwritable();
|
||||
local ret, err = self:onwritable();
|
||||
self._opportunistic_write = nil;
|
||||
return #data;
|
||||
return ret, err;
|
||||
end
|
||||
self:setwritetimeout();
|
||||
self:set(nil, true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue