SecureBlackbox 2020 C++ Edition

Questions / Feedback?

Log Event

Reports a single log line.

Syntax

ANSI (Cross Platform)
virtual int FireLog(DCAuthWebServerLogEventParams *e);
typedef struct {
int64 ConnectionId;
int LogType;
const char *Details; int reserved; } DCAuthWebServerLogEventParams; Unicode (Windows) virtual INT FireLog(DCAuthWebServerLogEventParams *e);
typedef struct {
LONG64 ConnectionId;
INT LogType;
LPCWSTR Details; INT reserved; } DCAuthWebServerLogEventParams;
- (void)onLog:(long long)connectionId :(int)logType :(NSString*)details;
#define EID_DCAUTHWEBSERVER_LOG 11

virtual INT SECUREBLACKBOX_CALL FireLog(LONG64 &lConnectionId, INT &iLogType, LPSTR &lpszDetails);

Remarks

This event is fired repeatedly during the component's work to inform the application about the flow of the signing process. The application may use this event to create an operation log.

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