Discuss this help topic in SecureBlackbox Forum
Defines different security options.
Declaration
[C#]
TSBFTPSSecurityOption = short;
const short fsoPlainLogin = 0;
const short fsoEncryption = 1;
const short fsoAuth = 2;
const short fsoClearControlChannel = 3;
const short fsoClearDataChannel = 4;
const short fsoEncryptedDataChannel = 5;
[VB.NET]
TSBFTPSSecurityOption As Short
Const fsoPlainLogin As Short = 0
Const fsoEncryption As Short = 1
Const fsoAuth As Short = 2
Const fsoClearControlChannel As Short = 3
Const fsoClearDataChannel As Short = 4
Const fsoEncryptedDataChannel As Short = 5
[Pascal]
TSBFTPSSecurityOption = (fsoPlainLogin, fsoEncryption, fsoAuth, fsoClearControlChannel, fsoClearDataChannel, fsoEncryptedDataChannel);
[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 TSBFTPSSecurityOption extends TSBBaseEnum {
const fsoPlainLogin = 0;
const fsoEncryption = 1;
const fsoAuth = 2;
const fsoClearControlChannel = 3;
const fsoClearDataChannel = 4;
const fsoEncryptedDataChannel = 5;
}
Possible values
Declared in
.NET:
- Namespace: SBFTPSServer
- Assembly: SecureBlackbox.FTPS
VCL:Java:
- Package: SecureBlackbox.FTPS.jar
C++:
Discuss this help topic in SecureBlackbox Forum