SecureBlackbox 2020 iOS Edition

Questions / Feedback?

onWriteFile (event)

This event is fired when a file write request is received.

Syntax

- (void)onWriteFile:(long long)connectionID :(NSString*)handle :(int)offset :(int*)operationStatus;
func onWriteFile(_ connectionID: Int64, _ handle: String, _ offset: Int32, _ operationStatus: inout Int32)

Remarks

This event is fired when a request to write a data block to a file is received from the client. The ConnectionID parameter specifies the session the request originates from. The Handle parameter references the opened file where the block should be written to. Offset references the position in the file where the block of data should be written.

Use GetClientBuffer method to obtain the piece of data that should be written to the file.

Set OperationStatus to one of the below values according to the outcome of the request processing:

ostOk1
ostNoSuchFile2
ostAccessDenied3
ostWriteProtect4
ostUnsupported5
ostInvalidParameter6
ostEOF7

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