mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
net.server_select: Restore real sendbuffer() before calling onconnect handler, in case onconnect sends data and the socket is still writeable (causing stack overflow into sendbuffer()/onconnect())
This commit is contained in:
parent
8e1bc4ff71
commit
2d18b1e9a7
1 changed files with 1 additions and 1 deletions
|
@ -853,8 +853,8 @@ local wrapclient = function( socket, ip, serverport, listeners, pattern, sslctx
|
|||
-- When socket is writeable, call onconnect
|
||||
local _sendbuffer = handler.sendbuffer;
|
||||
handler.sendbuffer = function ()
|
||||
listeners.onconnect(handler);
|
||||
handler.sendbuffer = _sendbuffer;
|
||||
listeners.onconnect(handler);
|
||||
-- If there was data with the incoming packet, handle it now.
|
||||
if #handler:bufferqueue() > 0 then
|
||||
return _sendbuffer();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue