SecureBlackbox 2020 C++ Edition

Questions / Feedback?

Data Event

Supplies a data chunk received from a client.

Syntax

ANSI (Cross Platform)
virtual int FireData(TLSServerDataEventParams *e);
typedef struct {
int64 ConnectionID;
const char *Buffer; int lenBuffer; int reserved; } TLSServerDataEventParams; Unicode (Windows) virtual INT FireData(TLSServerDataEventParams *e);
typedef struct {
LONG64 ConnectionID;
LPCSTR Buffer; INT lenBuffer; INT reserved; } TLSServerDataEventParams;
- (void)onData:(long long)connectionID :(NSData*)buffer;
#define EID_TLSSERVER_DATA 4

virtual INT SECUREBLACKBOX_CALL FireData(LONG64 &lConnectionID, LPSTR &lpBuffer, INT &lenBuffer);

Remarks

This event is fired to supply another piece of data received from a client. This event may fire multiple times.

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