diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-10-31 05:59:20 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-10-31 05:59:20 +0000 |
commit | dffa2a989aab61cb9470154a8f7239dcd936f851 (patch) | |
tree | 05a769f92134e3ed2f93190d28016198fe31aa2f /epan/proto.h | |
parent | c132bad4238ba81b447f27e3bc578f0d5a5852f4 (diff) | |
download | wireshark-dffa2a989aab61cb9470154a8f7239dcd936f851.tar.gz wireshark-dffa2a989aab61cb9470154a8f7239dcd936f851.tar.bz2 wireshark-dffa2a989aab61cb9470154a8f7239dcd936f851.zip |
Get rid of a bunch of stuff that was there to support non-tvbuffified
dissectors and that's no longer needed.
svn path=/trunk/; revision=4112
Diffstat (limited to 'epan/proto.h')
-rw-r--r-- | epan/proto.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/epan/proto.h b/epan/proto.h index dedc478b2e..68ab9cca66 100644 --- a/epan/proto.h +++ b/epan/proto.h @@ -1,7 +1,7 @@ /* proto.h * Definitions for protocol display * - * $Id: proto.h,v 1.17 2001/09/14 07:10:10 guy Exp $ + * $Id: proto.h,v 1.18 2001/10/31 05:59:19 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -56,13 +56,6 @@ struct value_string; #define TFS(x) (struct true_false_string*)(x) /* check protocol activation */ -#define OLD_CHECK_DISPLAY_AS_DATA(index, pd, offset, fd, tree) {\ - if (!proto_is_protocol_enabled(index)) { \ - old_dissect_data(pd, offset, fd, tree); \ - return; \ - } \ - } - #define CHECK_DISPLAY_AS_DATA(index, tvb, pinfo, tree) { \ if (!proto_is_protocol_enabled(index)) { \ dissect_data(tvb, 0, pinfo, tree); \ |