Discuss this help topic in SecureBlackbox Forum
Defines FTP options.
Declaration
[C#/Java]
TSBFTPOption = int;
const int foCCCSiteWorkaround = 1;
const int foSyncDataChannel = 2;
const int foSmartSSLSetup = 4;
const int foStreamingASCIIMode = 8;
const int foPreallocateStorage = 16;
[VB.NET]
TSBFTPOption As Integer
Const foCCCSiteWorkaround As Integer = 1
Const foSyncDataChannel As Integer = 2
Const foSmartSSLSetup As Integer = 4
Const foStreamingASCIIMode As Integer = 8
Const foPreallocateStorage As Integer = 16
[Pascal]
TSBFTPOption = (foCCCSiteWorkaround, foSyncDataChannel, foSmartSSLSetup, foStreamingASCIIMode, foPreallocateStorage);
[C++]
typedef uint8_t TSBFTPOptionRaw;
typedef enum { foCCCSiteWorkaround = 0, foSyncDataChannel = 1, foSmartSSLSetup = 2, foStreamingASCIIMode = 3, foPreallocateStorage = 4 } TSBFTPOption;
typedef uint32_t TSBFTPOptionsRaw;
typedef enum { f_foCCCSiteWorkaround = 1, f_foSyncDataChannel = 2, f_foSmartSSLSetup = 4, f_foStreamingASCIIMode = 8, f_foPreallocateStorage = 16 } TSBFTPOptions;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSimpleFTPS
- Assembly: SecureBlackbox.FTPS
VCL:Java:
- Package: SecureBlackbox.FTPS.jar
C++:
Discuss this help topic in SecureBlackbox Forum