diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-02-06 22:19:04 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-02-06 22:19:04 +0000 |
commit | dbf2eebd5c96e7052ea272752e94a0907b4c79c5 (patch) | |
tree | 28764a77ef3bfe32e88468c9c3776cc6e7c816fd /epan/packet.h | |
parent | 23d1a63f39d096018057b333b1b7a99c52d18e17 (diff) | |
download | wireshark-dbf2eebd5c96e7052ea272752e94a0907b4c79c5.tar.gz wireshark-dbf2eebd5c96e7052ea272752e94a0907b4c79c5.tar.bz2 wireshark-dbf2eebd5c96e7052ea272752e94a0907b4c79c5.zip |
Old-style (non-tvbuffified) dissectors haven't been supported since
0.9.0 was released; get rid of the typedef for "old_dissector_t".
svn path=/trunk/; revision=4703
Diffstat (limited to 'epan/packet.h')
-rw-r--r-- | epan/packet.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/packet.h b/epan/packet.h index ad7b86da0c..59f421df38 100644 --- a/epan/packet.h +++ b/epan/packet.h @@ -1,7 +1,7 @@ /* packet.h * Definitions for packet disassembly structures and routines * - * $Id: packet.h,v 1.49 2002/01/05 04:12:16 gram Exp $ + * $Id: packet.h,v 1.50 2002/02/06 22:19:04 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -91,7 +91,6 @@ struct dissector_table; typedef struct dissector_table *dissector_table_t; /* types for sub-dissector lookup */ -typedef void (*old_dissector_t)(const u_char *, int, frame_data *, proto_tree *); typedef void (*dissector_t)(tvbuff_t *, packet_info *, proto_tree *); typedef void (*DATFunc) (gchar *table_name, gpointer key, gpointer value, gpointer user_data); |