SecureBlackbox 2020 C++ Edition

Questions / Feedback?

TLSShutdown Event

Reports closure of a TLS session.

Syntax

ANSI (Cross Platform)
virtual int FireTLSShutdown(RESTServerTLSShutdownEventParams *e);
typedef struct {
int64 ConnectionID; int reserved; } RESTServerTLSShutdownEventParams; Unicode (Windows) virtual INT FireTLSShutdown(RESTServerTLSShutdownEventParams *e);
typedef struct {
LONG64 ConnectionID; INT reserved; } RESTServerTLSShutdownEventParams;
- (void)onTLSShutdown:(long long)connectionID;
#define EID_RESTSERVER_TLSSHUTDOWN 21

virtual INT SECUREBLACKBOX_CALL FireTLSShutdown(LONG64 &lConnectionID);

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 C++ Edition - Version 20.0 [Build 8166]