summaryrefslogtreecommitdiffstats
path: root/epan/stat_groups.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/stat_groups.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/stat_groups.h')
-rw-r--r--epan/stat_groups.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/epan/stat_groups.h b/epan/stat_groups.h
new file mode 100644
index 0000000..dda4d0b
--- /dev/null
+++ b/epan/stat_groups.h
@@ -0,0 +1,61 @@
+/* stat_groups.h
+ * Definitions of groups for statistics
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __STAT_GROUPS_H__
+#define __STAT_GROUPS_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+/** @file
+ * Add a new menu item for a stat.
+ */
+
+/*
+ * Menu statistics group definitions. Used by ui/qt/tap_parameter_dialog.h
+ * and ui/gtk/tap_param_dlg.h.
+ *
+ * XXX - stats should be able to register additional menu groups, although
+ * the question then would be "in what order should they appear in the menu?"
+ */
+
+/*! Statistics groups. Used for UI menu layout. */
+typedef enum register_stat_group_e {
+ REGISTER_PACKET_ANALYZE_GROUP_UNSORTED, /*!< Unsorted packet analysis */
+ REGISTER_ANALYZE_GROUP_CONVERSATION_FILTER, /*!< Conversation filters. Unused? */
+ REGISTER_PACKET_STAT_GROUP_UNSORTED, /*!< Unsorted packet statistics */
+ REGISTER_STAT_GROUP_GENERIC, /*!< Generic statistics, not specific to a protocol */
+ REGISTER_STAT_GROUP_CONVERSATION_LIST, /*!< Member of the conversation list */
+ REGISTER_STAT_GROUP_ENDPOINT_LIST, /*!< Member of the endpoint list */
+ REGISTER_STAT_GROUP_RESPONSE_TIME, /*!< Member of the service response time list */
+ REGISTER_STAT_GROUP_RSERPOOL, /*!< Member of the RSerPool list */
+ REGISTER_STAT_GROUP_TELEPHONY, /*!< Telephony specific */
+ REGISTER_STAT_GROUP_TELEPHONY_ANSI, /*!< Name says it all */
+ REGISTER_STAT_GROUP_TELEPHONY_GSM, /*!< GSM (and UMTS?) */
+ REGISTER_STAT_GROUP_TELEPHONY_LTE, /*!< Name says it all */
+ REGISTER_STAT_GROUP_TELEPHONY_MTP3, /*!< Name says it all */
+ REGISTER_STAT_GROUP_TELEPHONY_SCTP, /*!< Name says it all */
+ REGISTER_TOOLS_GROUP_UNSORTED, /*!< Unsorted tools */
+ REGISTER_LOG_ANALYZE_GROUP_UNSORTED, /*!< Unsorted log analysis */
+ REGISTER_LOG_STAT_GROUP_UNSORTED, /*!< Unsorted log statistics */
+} register_stat_group_t;
+
+/** Format types for "Save As..." */
+/* XXX Is there a more appropriate place to define this? */
+typedef enum _st_format_type {
+ ST_FORMAT_PLAIN, ST_FORMAT_CSV, ST_FORMAT_XML, ST_FORMAT_YAML
+ } st_format_type;
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __STAT_GROUPS_H__ */