SecureBlackbox 2020 C++ Edition

Questions / Feedback?

CommandStart Event

Marks the commencement of a command execution.

Syntax

ANSI (Cross Platform)
virtual int FireCommandStart(SSHClientCommandStartEventParams *e);
typedef struct {
const char *Command; int reserved; } SSHClientCommandStartEventParams; Unicode (Windows) virtual INT FireCommandStart(SSHClientCommandStartEventParams *e);
typedef struct {
LPCWSTR Command; INT reserved; } SSHClientCommandStartEventParams;
- (void)onCommandStart:(NSString*)command;
#define EID_SSHCLIENT_COMMANDSTART 6

virtual INT SECUREBLACKBOX_CALL FireCommandStart(LPSTR &lpszCommand);

Remarks

Subscribe to this event to be notified about the start of execution of a remote command. The Command parameter indicates the command being started.

This event is fired for all commands in the Commands list, in order. The completion of the command is reported via the CommandCompleted event.

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