mirror of
https://github.com/safing/portmaster
synced 2025-09-10 23:14:35 +00:00
Adapt and update status package
This commit is contained in:
parent
c146c99273
commit
247c7dca00
3 changed files with 40 additions and 20 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue