Adapt and update status package

This commit is contained in:
Daniel 2018-10-30 19:12:25 +01:00
parent c146c99273
commit 247c7dca00
3 changed files with 40 additions and 20 deletions

View file

@ -2,10 +2,16 @@ package status
// Definitions of Security and Status Levels
const (
SecurityLevelOff uint8 = 0
SecurityLevelOff uint8 = 0
SecurityLevelDynamic uint8 = 1
SecurityLevelSecure uint8 = 2
SecurityLevelFortress uint8 = 3
SecurityLevelFortress uint8 = 4
SecurityLevelsDynamicAndSecure uint8 = SecurityLevelDynamic | SecurityLevelSecure
SecurityLevelsDynamicAndFortress uint8 = SecurityLevelDynamic | SecurityLevelFortress
SecurityLevelsSecureAndFortress uint8 = SecurityLevelSecure | SecurityLevelFortress
SecurityLevelsAll uint8 = SecurityLevelDynamic | SecurityLevelSecure | SecurityLevelFortress
StatusOff uint8 = 0
StatusError uint8 = 1