diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-06-06 00:27:24 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-06-06 00:27:24 +0200 |
commit | 37983d97ec0eb03845f11eb03f429174acfd327b (patch) | |
tree | 9dbb5cdf8bbc463b43d38f45353b80b0f8ad7fe7 /framework/src/domain/mime/mimetreeparser/enums.h | |
parent | e98793cb59a1f29fe3b6980e0af3a48ed049024d (diff) | |
download | kube-37983d97ec0eb03845f11eb03f429174acfd327b.tar.gz kube-37983d97ec0eb03845f11eb03f429174acfd327b.zip |
A simplistic security border
Still a bit obnoxious and doesn't really convey a whole lot of
information. Consider it a stub for now
Diffstat (limited to 'framework/src/domain/mime/mimetreeparser/enums.h')
-rw-r--r-- | framework/src/domain/mime/mimetreeparser/enums.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/framework/src/domain/mime/mimetreeparser/enums.h b/framework/src/domain/mime/mimetreeparser/enums.h index bec5a028..db3af165 100644 --- a/framework/src/domain/mime/mimetreeparser/enums.h +++ b/framework/src/domain/mime/mimetreeparser/enums.h | |||
@@ -33,20 +33,20 @@ enum UpdateMode { | |||
33 | 33 | ||
34 | /** Flags for the encryption state. */ | 34 | /** Flags for the encryption state. */ |
35 | typedef enum { | 35 | typedef enum { |
36 | KMMsgEncryptionStateUnknown = ' ', | 36 | KMMsgEncryptionStateUnknown, |
37 | KMMsgNotEncrypted = 'N', | 37 | KMMsgNotEncrypted, |
38 | KMMsgPartiallyEncrypted = 'P', | 38 | KMMsgPartiallyEncrypted, |
39 | KMMsgFullyEncrypted = 'F', | 39 | KMMsgFullyEncrypted, |
40 | KMMsgEncryptionProblematic = 'X' | 40 | KMMsgEncryptionProblematic |
41 | } KMMsgEncryptionState; | 41 | } KMMsgEncryptionState; |
42 | 42 | ||
43 | /** Flags for the signature state. */ | 43 | /** Flags for the signature state. */ |
44 | typedef enum { | 44 | typedef enum { |
45 | KMMsgSignatureStateUnknown = ' ', | 45 | KMMsgSignatureStateUnknown, |
46 | KMMsgNotSigned = 'N', | 46 | KMMsgNotSigned, |
47 | KMMsgPartiallySigned = 'P', | 47 | KMMsgPartiallySigned, |
48 | KMMsgFullySigned = 'F', | 48 | KMMsgFullySigned, |
49 | KMMsgSignatureProblematic = 'X' | 49 | KMMsgSignatureProblematic |
50 | } KMMsgSignatureState; | 50 | } KMMsgSignatureState; |
51 | 51 | ||
52 | } | 52 | } |