diff options
author | Ed Warnicke <hagbard@physics.rutgers.edu> | 2001-11-25 22:51:14 +0000 |
---|---|---|
committer | Ed Warnicke <hagbard@physics.rutgers.edu> | 2001-11-25 22:51:14 +0000 |
commit | 34dbc86e65d64bf747d948051ba8d4d3e967d6d1 (patch) | |
tree | 20244c5cfd8f43e50e4dccd78b8a9ce386894d49 /packet-ipx.c | |
parent | a810a01338337a3802ff19ef9d952999181458c3 (diff) | |
download | wireshark-34dbc86e65d64bf747d948051ba8d4d3e967d6d1.tar.gz wireshark-34dbc86e65d64bf747d948051ba8d4d3e967d6d1.tar.bz2 wireshark-34dbc86e65d64bf747d948051ba8d4d3e967d6d1.zip |
Moved from using dissect_data to using call_dissector()
svn path=/trunk/; revision=4264
Diffstat (limited to 'packet-ipx.c')
-rw-r--r-- | packet-ipx.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/packet-ipx.c b/packet-ipx.c index c09afe1c89..e697f4d88e 100644 --- a/packet-ipx.c +++ b/packet-ipx.c @@ -2,7 +2,7 @@ * Routines for NetWare's IPX * Gilbert Ramirez <gram@alumni.rice.edu> * - * $Id: packet-ipx.c,v 1.94 2001/11/25 01:28:00 guy Exp $ + * $Id: packet-ipx.c,v 1.95 2001/11/25 22:51:13 hagbard Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -99,6 +99,8 @@ static int proto_ipxmsg = -1; static int hf_msg_conn = -1; static int hf_msg_sigchar = -1; +static dissector_handle_t data_handle; + static void dissect_spx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree); @@ -280,7 +282,7 @@ dissect_ipx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) if (dissector_try_port(ipx_socket_dissector_table, ipx_ssocket, next_tvb, pinfo, tree)) return; - dissect_data(next_tvb, 0, pinfo, tree); + call_dissector(data_handle,next_tvb, pinfo, tree); } @@ -363,7 +365,7 @@ dissect_spx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) proto_tree_add_item(spx_tree, hf_spx_all_nr, tvb, 10, 2, FALSE); next_tvb = tvb_new_subset(tvb, SPX_HEADER_LEN, -1, -1); - dissect_data(next_tvb, 0, pinfo, tree); + call_dissector(data_handle,next_tvb, pinfo, tree); } } @@ -994,4 +996,5 @@ proto_reg_handoff_ipx(void) proto_ipxrip); dissector_add("ipx.socket", IPX_SOCKET_IPX_MESSAGE, dissect_ipxmsg, proto_ipxmsg); + data_handle = find_dissector("data"); } |