SecureBlackbox 2020 C++ Edition

Questions / Feedback?

CommandReply Event

Reports the receipt of a reply to a command.

Syntax

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

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.

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