SecureBlackbox 2020 Qt Edition

Questions / Feedback?

TLSShutdown Event

Reports closure of a TLS session.

Syntax

class RESTServerTLSShutdownEventParams {
public:
  qint64 ConnectionID();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void TLSShutdown(RESTServerTLSShutdownEventParams *e);
// Or, subclass RESTServer and override this emitter function. virtual int FireTLSShutdown(RESTServerTLSShutdownEventParams *e) {...}

Remarks

The class fires this event when a connected client closes their TLS session gracefully. This event is typically followed by a Disconnect, which marks the closure of the underlying TCP session.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Qt Edition - Version 20.0 [Build 8154]