On Windows, include "capture-wpcap.h", to define "has_wpcap".
[obnox/wireshark/wip.git] / packet-data.c
index e389ab56c63984ef7d5ba120b7b75dacf49a7eaf..7b01c9504f9b33098969acb52b795e93b7798547 100644 (file)
@@ -1,13 +1,12 @@
 /* packet-data.c
  * Routines for raw data (default case)
- * Gilbert Ramirez <gram@verdict.uthscsa.edu>
+ * Gilbert Ramirez <gram@alumni.rice.edu>
  *
- * $Id: packet-data.c,v 1.5 1998/11/12 00:06:25 gram Exp $
+ * $Id: packet-data.c,v 1.28 2002/04/04 05:16:14 guy Exp $
  *
  * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@unicom.net>
+ * By Gerald Combs <gerald@ethereal.com>
  * Copyright 1998 Gerald Combs
- *
  * 
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
 # include "config.h"
 #endif
 
-#include <gtk/gtk.h>
-
-#include <stdio.h>
-
 #ifdef HAVE_SYS_TYPES_H
 # include <sys/types.h>
 #endif
 
-#include "ethereal.h"
-#include "packet.h"
+#include <glib.h>
+#include <epan/packet.h>
 
+/* proto_data cannot be static because it's referenced in the
+ * print routines
+ */
+int proto_data = -1;
 
-void
-dissect_data(const u_char *pd, int offset, frame_data *fd, GtkTree *tree) {
+static void
+dissect_data(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
+{
+       int bytes;
 
-       if (fd->cap_len > offset && tree) {
-               (void) add_item_to_tree(GTK_WIDGET(tree), offset, END_OF_FRAME,
-                       "Data (%d bytes)", END_OF_FRAME);
+       if (tree) {
+               bytes = tvb_length_remaining(tvb, 0);
+               if (bytes > 0) {
+                       proto_tree_add_protocol_format(tree, proto_data, tvb,
+                               0,
+                               bytes, "Data (%d byte%s)", bytes,
+                               plurality(bytes, "", "s"));
+               }
        }
 }
 
+void
+proto_register_data(void)
+{
+       proto_data = proto_register_protocol (
+               "Data",         /* name */
+               "Data",         /* short name */
+               "data"          /* abbrev */
+               );
+
+       register_dissector("data", dissect_data, proto_data);
+
+       /*
+        * "Data" is used to dissect something whose normal dissector
+        * is disabled, so it cannot itself be disabled.
+        */
+       proto_set_cant_disable(proto_data);
+}