Handle piggybacked messages.
[obnox/wireshark/wip.git] / stat_menu.h
index 1d9d0aab7963ce6beaf050328b04e26f34c8f79d..1c20ebfe9c4ec22f77354a64eb745ab4e58566b5 100644 (file)
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
 
 #ifndef __STATMENU_H__
@@ -35,7 +35,7 @@ extern "C" {
 
 /*
  * XXX - defines stuff usable regardless of the GUI toolkit.  Right now,
- * that's only the menu group, which is used by tap_dfilter_dlg.h.
+ * that's only the menu group, which is used by 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?"
@@ -43,15 +43,15 @@ extern "C" {
 
 /** The menu group this stat should be registered in. */
 typedef enum {
-    REGISTER_STAT_GROUP_NONE,
-    REGISTER_STAT_GROUP_GENERIC,
-    REGISTER_STAT_GROUP_CONVERSATION_LIST,
-    REGISTER_STAT_GROUP_ENDPOINT_LIST,
-    REGISTER_STAT_GROUP_RESPONSE_TIME,
-    REGISTER_STAT_GROUP_TELEPHONY,
-    /* XXX - split into telephony and VoIP? */
-       REGISTER_ANALYZE_GROUP_NONE,
-       REGISTER_TOOLS_GROUP_NONE,
+    REGISTER_ANALYZE_GROUP_UNSORTED,            /* unsorted analyze stuff */
+    REGISTER_ANALYZE_GROUP_CONVERSATION_FILTER, /* conversation filters */
+    REGISTER_STAT_GROUP_UNSORTED,               /* unsorted statistic function */
+    REGISTER_STAT_GROUP_GENERIC,                /* generic statistic function, 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_TELEPHONY,              /* telephony specific */
+    REGISTER_TOOLS_GROUP_UNSORTED               /* unsorted tools */
 } register_stat_group_t;
 
 #ifdef __cplusplus