summaryrefslogtreecommitdiff
path: root/epan/proto.h
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2010-05-26 13:53:17 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2010-05-26 13:53:17 +0000
commit7c4ec2e05138ba4a826f8a633ad8f0052391ebee (patch)
tree8f65830c5135f26412f097492f9bfad111c1af42 /epan/proto.h
parentf19eee998ff83685c5a6f1b3115204cf0f100cb3 (diff)
downloadwireshark-7c4ec2e05138ba4a826f8a633ad8f0052391ebee.tar.gz
Expert severity was still overlapping with bits length, so separate them.
svn path=/trunk/; revision=32974
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/proto.h b/epan/proto.h
index 87c77a613a..4cae10caf7 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -370,15 +370,15 @@ typedef proto_node proto_item;
*/
/* expert severities */
-#define PI_SEVERITY_MASK 0x0000E000 /* mask usually for internal use only! */
+#define PI_SEVERITY_MASK 0x00F00000 /* mask usually for internal use only! */
/** Usual workflow, e.g. TCP connection establishing */
-#define PI_CHAT 0x00002000
+#define PI_CHAT 0x00200000
/** Notable messages, e.g. an application returned an "usual" error code like HTTP 404 */
-#define PI_NOTE 0x00004000
+#define PI_NOTE 0x00400000
/** Warning, e.g. application returned an "unusual" error code */
-#define PI_WARN 0x00006000
+#define PI_WARN 0x00600000
/** Serious problems, e.g. [Malformed Packet] */
-#define PI_ERROR 0x00008000
+#define PI_ERROR 0x00800000
/* expert "event groups" */
#define PI_GROUP_MASK 0xFF000000 /* mask usually for internal use only! */