# HG changeset patch # User Matthew Wild # Date 1254668301 -3600 # Node ID 6866cf2987010e39ac9267c161fc8b92e3e42894 # Parent ad04cac043546aecf4231b45cee5f8841116518d net.server: Call handler's status() to notify it of ssl handshake success diff -r ad04cac04354 -r 6866cf298701 net/server.lua --- a/net/server.lua Sun Oct 04 15:56:55 2009 +0100 +++ b/net/server.lua Sun Oct 04 15:58:21 2009 +0100 @@ -300,6 +300,7 @@ local ssl local dispatch = listeners.incoming or listeners.listener + local status = listeners.status local disconnect = listeners.disconnect local bufferqueue = { } -- buffer array @@ -542,7 +543,7 @@ out_put( "server.lua: ssl handshake done" ) handler.readbuffer = _readbuffer -- when handshake is done, replace the handshake function with regular functions handler.sendbuffer = _sendbuffer - -- return dispatch( handler ) + _ = status and status( handler, "ssl-handshake-complete" ) return true else out_put( "server.lua: error during ssl handshake: ", tostring(err) )