summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--epan/expert.c1
-rw-r--r--epan/proto.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/epan/expert.c b/epan/expert.c
index 64866dc82a..9dd53863fb 100644
--- a/epan/expert.c
+++ b/epan/expert.c
@@ -80,6 +80,7 @@ const value_string expert_group_vals[] = {
{ PI_PROTOCOL, "Protocol" },
{ PI_SECURITY, "Security" },
{ PI_COMMENTS_GROUP, "Comment" },
+ { PI_DECRYPTION, "Decryption" },
{ 0, NULL }
};
diff --git a/epan/proto.h b/epan/proto.h
index 2e9e1bbe09..a3c539be2f 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -742,6 +742,8 @@ typedef proto_node proto_item;
#define PI_SECURITY 0x0a000000
/** The protocol field indicates a packet comment */
#define PI_COMMENTS_GROUP 0x0b000000
+/** The protocol field indicates a decryption problem */
+#define PI_DECRYPTION 0x0c000000
/* add more, see https://wiki.wireshark.org/Development/ExpertInfo */