SecureBlackbox 2020 Qt Edition

Questions / Feedback?

CommandProcessed Event

Signals that a command has been processed by the server.

Syntax

class FTPServerCommandProcessedEventParams {
public:
  qint64 ConnectionID();
  const QString &CurrentDirectory();
  const QString &Command();
  int ReplyCode();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void CommandProcessed(FTPServerCommandProcessedEventParams *e);
// Or, subclass FTPServer and override this emitter function. virtual int FireCommandProcessed(FTPServerCommandProcessedEventParams *e) {...}

Remarks

The class fires this event to signal that a command has been processed by the server, and a reply code has been generated.

You can adjust the reply code and the textual comment associated with it in BeforeSendReply event handler.

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