SecureBlackbox 2020 Qt Edition

Questions / Feedback?

ControlReceive Event

Fires when data is received via the control channel.

Syntax

class FTPClientControlReceiveEventParams {
public:
  const QString &TextLine();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void ControlReceive(FTPClientControlReceiveEventParams *e);
// Or, subclass FTPClient and override this emitter function. virtual int FireControlReceive(FTPClientControlReceiveEventParams *e) {...}

Remarks

TextLine contains the data that was received, which would typically contain a reply to a command (e.g. 200 Command OK).

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