aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-04 05:16:15 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-04 05:16:15 +0000
commitc8fdc30fe250dfde468b366483b78a3acba3e382 (patch)
treebeed547255ec916a6f66ff5d31b59e4f8cf6046a /plugins
parentdfd6b4fcf0d9b38c7cdaf4574e28fd21ca6905d7 (diff)
Make "dissect_data()" static - it's only called through handles.
svn path=/trunk/; revision=5096
Diffstat (limited to 'plugins')
-rw-r--r--plugins/plugin_table.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/plugin_table.h b/plugins/plugin_table.h
index e676d3566a..89cd06a865 100644
--- a/plugins/plugin_table.h
+++ b/plugins/plugin_table.h
@@ -1,7 +1,7 @@
/* plugin_table.h
* Table of exported addresses for Ethereal plugins.
*
- * $Id: plugin_table.h,v 1.43 2002/02/27 21:26:37 guy Exp $
+ * $Id: plugin_table.h,v 1.44 2002/04/04 05:16:15 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -72,8 +72,6 @@ typedef dissector_handle_t (*addr_create_dissector_handle)(dissector_t dissector
typedef int (*addr_call_dissector)(dissector_handle_t, tvbuff_t *,
packet_info *, proto_tree *);
-typedef void (*addr_dissect_data)(tvbuff_t *, int, packet_info *, proto_tree *);
-
typedef gboolean (*addr_proto_is_protocol_enabled)(int);
typedef int (*addr_proto_item_get_len)(proto_item*);
@@ -261,8 +259,6 @@ typedef struct {
addr_create_dissector_handle p_create_dissector_handle;
addr_call_dissector p_call_dissector;
- addr_dissect_data p_dissect_data;
-
addr_proto_is_protocol_enabled p_proto_is_protocol_enabled;
addr_proto_item_get_len p_proto_item_get_len;