SecureBlackbox 2020 C++ Edition

Questions / Feedback?

WriteFile Event

Hands a piece of file data to the application.

Syntax

ANSI (Cross Platform)
virtual int FireWriteFile(FTPServerWriteFileEventParams *e);
typedef struct {
int64 ConnectionID;
int OperationStatus; int reserved; } FTPServerWriteFileEventParams; Unicode (Windows) virtual INT FireWriteFile(FTPServerWriteFileEventParams *e);
typedef struct {
LONG64 ConnectionID;
INT OperationStatus; INT reserved; } FTPServerWriteFileEventParams;
- (void)onWriteFile:(long long)connectionID :(int*)operationStatus;
#define EID_FTPSERVER_WRITEFILE 40

virtual INT SECUREBLACKBOX_CALL FireWriteFile(LONG64 &lConnectionID, INT &iOperationStatus);

Remarks

The class fires this event repeatedly during an overridden upload operation to pass file data to the application.

The handler of this event should retrieve the pending data buffer with a GetClientBuffer call, and write it to the end of the file that is being uploaded.

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

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]