mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
net.server_select: Update error logging logic during SSL handshake (now shows correctly when a handshake exceeded max. allowed iterations)
This commit is contained in:
parent
7915c70e13
commit
b43b86615b
1 changed files with 3 additions and 3 deletions
|
@ -535,13 +535,13 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
|
|||
_readlistlen = addsocket(_readlist, client, _readlistlen)
|
||||
read = true
|
||||
else
|
||||
out_put( "server.lua: ssl handshake error: ", tostring(err) )
|
||||
break;
|
||||
end
|
||||
--coroutine_yield( handler, nil, err ) -- handshake not finished
|
||||
coroutine_yield( )
|
||||
err = nil;
|
||||
coroutine_yield( ) -- handshake not finished
|
||||
end
|
||||
end
|
||||
out_put( "server.lua: ssl handshake error: ", tostring(err or "handshake too long") )
|
||||
disconnect( handler, "ssl handshake failed" )
|
||||
_ = handler and handler:close( true ) -- forced disconnect
|
||||
return false -- handshake failed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue