From f6d0e0946e140591afaf50a7a561679d3c4c2442 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 7 Sep 2015 16:44:56 -0700 Subject: Add a new expert info type for decryption problems. This is what should be used if, for some reason, decryption can't be performed. (And if there's a known reason why decryption can't be performed, it should be used, so the user knows why their 802.11/SSL/whatever traffic isn't decrypted, and either doesn't have to ask why or, at least, can give more details when they do ask why.) (Yes, I plan to use this for the 802.11 decryption code. Work in progress.) Change-Id: I812e61c2a4613d2e85f9ced1f5ed6ae91ac5f7ae Reviewed-on: https://code.wireshark.org/review/10421 Reviewed-by: Guy Harris --- epan/proto.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'epan/proto.h') 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 */ -- cgit v1.2.1