SecureBlackbox 2020 C++ Edition

Questions / Feedback?

UploadFile Event

An override for a file upload initiation operation.

Syntax

ANSI (Cross Platform)
virtual int FireUploadFile(FTPServerUploadFileEventParams *e);
typedef struct {
int64 ConnectionID;
const char *Path;
int64 RestartAt;
int Append;
int OperationStatus; int reserved; } FTPServerUploadFileEventParams; Unicode (Windows) virtual INT FireUploadFile(FTPServerUploadFileEventParams *e);
typedef struct {
LONG64 ConnectionID;
LPCWSTR Path;
LONG64 RestartAt;
BOOL Append;
INT OperationStatus; INT reserved; } FTPServerUploadFileEventParams;
- (void)onUploadFile:(long long)connectionID :(NSString*)path :(long long)restartAt :(BOOL)append :(int*)operationStatus;
#define EID_FTPSERVER_UPLOADFILE 39

virtual INT SECUREBLACKBOX_CALL FireUploadFile(LONG64 &lConnectionID, LPSTR &lpszPath, LONG64 &lRestartAt, BOOL &bAppend, INT &iOperationStatus);

Remarks

The class fires this event to let the application perform an overridden file upload initiation operation.

This event only fires if Action = fraCustom was passed back from BeforeUploadFile event, and expects your code to perform the requested operation inside the handler. No default operation will be performed by the server component.

Use the OperationStatus parameter to return the operation result back to the server.

This event will be followed by a number of WriteFile calls, passing the file data to your code, followed by a single TransferCompleted call.

Set OperationStatus to one of the following values:

ostOk1
ostNoSuchFile2
ostAccessDenied3
ostWriteProtect4
ostUnsupported5
ostInvalidParameter6
ostEOF7

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