SecureBlackbox 2020 C++ Edition

Questions / Feedback?

CommandReply Event

Reports the receipt of a reply to a command.

Syntax

ANSI (Cross Platform)
virtual int FireCommandReply(POP3ClientCommandReplyEventParams *e);
typedef struct {
const char *Cmd;
const char *Reply; int reserved; } POP3ClientCommandReplyEventParams; Unicode (Windows) virtual INT FireCommandReply(POP3ClientCommandReplyEventParams *e);
typedef struct {
LPCWSTR Cmd;
LPCWSTR Reply; INT reserved; } POP3ClientCommandReplyEventParams;
- (void)onCommandReply:(NSString*)cmd :(NSString*)reply;
#define EID_POP3CLIENT_COMMANDREPLY 4

virtual INT SECUREBLACKBOX_CALL FireCommandReply(LPSTR &lpszCmd, LPSTR &lpszReply);

Remarks

Use this event to track command replies sent in by the server. Use Command to track the commands sent out by the client, and CommandReplyData to access the reply data for commands that assume it.

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