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