mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Skip attempt to flush write buffer when not connected
Before 22825cb5dcd8 connection attempts that failed (e.g. connection refused) would be immediately destroyed. After, it would schedule another write cycle and then report 'ondisconnect' again when failing. Thanks Martin for reporting
This commit is contained in:
parent
da8329037d
commit
7e8a3af45f
1 changed files with 1 additions and 1 deletions
|
@ -573,7 +573,7 @@ interface.send = interface.write;
|
|||
|
||||
-- Close, possibly after writing is done
|
||||
function interface:close()
|
||||
if self.writebuffer and (self.writebuffer[1] or type(self.writebuffer) == "string") then
|
||||
if self._connected and self.writebuffer and (self.writebuffer[1] or type(self.writebuffer) == "string") then
|
||||
self:set(false, true); -- Flush final buffer contents
|
||||
self:setreadtimeout(false);
|
||||
self:setwritetimeout();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue