aboutsummaryrefslogtreecommitdiffstats
path: root/epan/expert.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-03-11 15:22:20 -0700
committerAnders Broman <a.broman58@gmail.com>2015-05-08 04:29:59 +0000
commitf77e02ccc62c9283eefba416efbb2f94e460066e (patch)
tree40aa62ed6f8c03e22cdc636e2335f3b810810b65 /epan/expert.h
parent3d7ff97e4fa9211a064acbac0ec0c025a164d69e (diff)
Expert Info dialog.
Show all expert messages in a combined view. Group top-level items by a (severity, group, protocol) tuple. Let the user enable and disable messages via a check menu. Add ProtoTree::goToField and expert_info_t.hf_index. Use them to jump to what we hope is the afflicted item. Enable the context menu only if the user has selected a packet item. Add a free-form search field that matches expert summaries. This differs from the GTK+ version but hopefully provides a smoother workflow. Bug: 10931 Change-Id: Ia12cb7c27cdea1634fa2798fb7e4c1b23bd16ad2 Reviewed-on: https://code.wireshark.org/review/8294 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/expert.h')
-rw-r--r--epan/expert.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/expert.h b/epan/expert.h
index bbaa07c715..dc994ba4fc 100644
--- a/epan/expert.h
+++ b/epan/expert.h
@@ -39,6 +39,7 @@ typedef struct expert_info_s {
guint32 packet_num;
int group;
int severity;
+ int hf_index; /* hf_index of the expert item. Might be -1. */
const gchar *protocol;
gchar *summary;
proto_item *pitem;