SecureBlackbox 2020 Qt Edition

Questions / Feedback?

TransferCompleted Event

This event is fired when a customized upload or download operation completes.

Syntax

class FTPServerTransferCompletedEventParams {
public:
  qint64 ConnectionID();
  int OperationStatus();
  void SetOperationStatus(int iOperationStatus);
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void TransferCompleted(FTPServerTransferCompletedEventParams *e);
// Or, subclass FTPServer and override this emitter function. virtual int FireTransferCompleted(FTPServerTransferCompletedEventParams *e) {...}

Remarks

This event is fired when a customized transfer operation completes. This event is only fired for operations handled by the user code, i.e. those intercepted with BeforeUploadFile or BeforeDownloadFile event, and with Action parameter set to fraCustom.

The ConnectionID parameter specifies the session to which the event belongs, and OperationStatus reports the outcome of the transfer operation.

ostOk1
ostNoSuchFile2
ostAccessDenied3
ostWriteProtect4
ostUnsupported5
ostInvalidParameter6
ostEOF7

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