SSLStatus Event
Shows the progress of the secure connection.
Syntax
class ServerSSLStatusEventParams {
public:
const QString &Message();
int EventRetVal();
void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal.
void SSLStatus(ServerSSLStatusEventParams *e);
// Or, subclass Server and override this emitter function.
virtual int FireSSLStatus(ServerSSLStatusEventParams *e) {...}
Remarks
The event is fired for informational and logging purposes only. Used to track the progress of the connection.