In Netty, is there any way to receive notification that a ssl handshake completed successfully on the server side? I know that you can in the client by adding a listener when you call handshake(), but this only works on the client (since only the client should initiate the original handshake).
This seems like functionality the SslHandler should provide.