Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBFTPSSecurityOptions = int;
const int fsoPlainLogin = 1;
const int fsoEncryption = 2;
const int fsoAuth = 4;
const int fsoClearControlChannel = 8;
const int fsoClearDataChannel = 16;
const int fsoEncryptedDataChannel = 32;
[VB.NET]
TSBFTPSSecurityOptions As Integer
Const fsoPlainLogin As Integer = 1
Const fsoEncryption As Integer = 2
Const fsoAuth As Integer = 4
Const fsoClearControlChannel As Integer = 8
Const fsoClearDataChannel As Integer = 16
Const fsoEncryptedDataChannel As Integer = 32
[Pascal]
under development
[C++]
typedef uint8_t TSBFTPSSecurityOptionRaw;
typedef enum { fsoPlainLogin = 0, fsoEncryption = 1, fsoAuth = 2, fsoClearControlChannel = 3, fsoClearDataChannel = 4, fsoEncryptedDataChannel = 5 } TSBFTPSSecurityOption;
typedef uint32_t TSBFTPSSecurityOptionsRaw;
typedef enum { f_fsoPlainLogin = 1, f_fsoEncryption = 2, f_fsoAuth = 4, f_fsoClearControlChannel = 8, f_fsoClearDataChannel = 16, f_fsoEncryptedDataChannel = 32 } TSBFTPSSecurityOptions;
[PHP]
class TSBFTPSSecurityOptions extends TSBBaseEnum {
const fsoPlainLogin = 1;
const fsoEncryption = 2;
const fsoAuth = 4;
const fsoClearControlChannel = 8;
const fsoClearDataChannel = 16;
const fsoEncryptedDataChannel = 32;
}
Possible values
Declared in
.NET:
- Namespace: SBFTPSServer
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum