aboutsummaryrefslogtreecommitdiffstats
path: root/packet.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-08-18 16:28:22 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-08-18 16:28:22 +0000
commitc1adce97623a8b75c3080fbd9295094068842239 (patch)
tree668b84cd0851badaa440d1c2948ba5ee83b4dd28 /packet.h
parent648ffa143521d947c01363c37a1c62b38ee45f57 (diff)
downloadwireshark-c1adce97623a8b75c3080fbd9295094068842239.tar.gz
wireshark-c1adce97623a8b75c3080fbd9295094068842239.tar.bz2
wireshark-c1adce97623a8b75c3080fbd9295094068842239.zip
Re-arranged Ethereal's definitions of DLT_RAW et al. since capture.c
is the only file that uses them. I hope to avoid some compiler warnings with this. svn path=/trunk/; revision=512
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/packet.h b/packet.h
index fd82cc0d1e..7e6733058e 100644
--- a/packet.h
+++ b/packet.h
@@ -1,7 +1,7 @@
/* packet.h
* Definitions for packet disassembly structures and routines
*
- * $Id: packet.h,v 1.84 1999/08/18 00:57:54 guy Exp $
+ * $Id: packet.h,v 1.85 1999/08/18 16:28:22 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -312,22 +312,6 @@ enum {
NUM_TREE_TYPES /* last item number plus one */
};
-/* The version of pcap.h that comes with some systems is missing these
- * #defines.
- */
-
-#ifndef DLT_RAW
-#define DLT_RAW 12
-#endif
-
-#ifndef DLT_SLIP_BSDOS
-#define DLT_SLIP_BSDOS 13
-#endif
-
-#ifndef DLT_PPP_BSDOS
-#define DLT_PPP_BSDOS 14
-#endif
-
/* Utility routines used by packet*.c */
gchar* ether_to_str(const guint8 *);