Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSSHServerState { ssBefore = 0, ssIdentificationLineSent = 1, ssIdentificationLineReceived = 2 };
[VB.NET]
Enum TSSHServerState
ssBefore = 0
ssIdentificationLineSent = 1
ssIdentificationLineReceived = 2
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSSHServerStateRaw;
typedef enum { ssBefore = 0, ssIdentificationLineSent = 1, ssIdentificationLineReceived = 2 } TSSHServerState;
[PHP]
class TSSHServerState extends TSBBaseEnum {
const ssBefore = 0;
const ssIdentificationLineSent = 1;
const ssIdentificationLineReceived = 2;
}
[Java]
public enum TSSHServerState { ssBefore, ssIdentificationLineSent, ssIdentificationLineReceived }
Possible values
Declared in
.NET:
- Namespace: SBSSHServer
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum