aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nfs.h
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-06 14:30:34 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-06 14:30:34 +0000
commit487227f9cca6b1bd17d08c8d014a29be1e7b4d25 (patch)
tree24f747d274b0802dbbe2fc9378ce94c32e4a692e /epan/dissectors/packet-nfs.h
parentef70629d03cc1bbb9c0e9389d98b883327441f1b (diff)
get rid of another slow hashtable and one global variable and
replace it with a better and memleak free se_tree git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17480 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-nfs.h')
-rw-r--r--epan/dissectors/packet-nfs.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-nfs.h b/epan/dissectors/packet-nfs.h
index a28dab0088..544fd6f80b 100644
--- a/epan/dissectors/packet-nfs.h
+++ b/epan/dissectors/packet-nfs.h
@@ -111,13 +111,12 @@ void nfs_name_snoop_add_name(int xid, tvbuff_t *tvb, int name_offset, int name_l
extern gboolean nfs_fhandle_reqrep_matching;
-extern GHashTable *nfs_fhandle_frame_table;
typedef struct nfs_fhandle_data {
int len;
const unsigned char *fh;
tvbuff_t *tvb;
} nfs_fhandle_data_t;
-void dissect_fhandle_hidden(packet_info *pinfo, proto_tree *tree, nfs_fhandle_data_t *nfd);
+void dissect_fhandle_hidden(packet_info *pinfo, proto_tree *tree, int frame);
typedef int (diss_p)(tvbuff_t *tvb, int offset, proto_tree *tree, int hf);