aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-03-02 13:31:16 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-03-02 13:31:16 +0000
commitff47bdf96c75b9d35eeafc3248c57f3369b1e0a0 (patch)
tree7be0ce5ec822b8714f216a04e43388e55db1852f /epan/proto.h
parent15a88e695f80dd2cb7c37a4cb62b4a54db069f88 (diff)
Use the expert system to show packet comments.
The packet comment widget should be replaced by a ListView with two columns, packet no and Comment. svn path=/trunk/; revision=41322
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/proto.h b/epan/proto.h
index ddbb3bd88c..7eaf6a374b 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -506,8 +506,10 @@ typedef proto_node proto_item;
#define PI_DEBUG 0x08000000
/** The protocol field violates a protocol specification, usually PI_WARN */
#define PI_PROTOCOL 0x09000000
-/* The protocol field indicates a security probem (e.g. unsecure implementation) */
+/** The protocol field indicates a security probem (e.g. unsecure implementation) */
#define PI_SECURITY 0x0a000000
+/** The protocol field indicates a packet comment */
+#define PI_COMMENTS_GROUP 0x0b000000
/* add more, see http://wiki.wireshark.org/Development/ExpertInfo */