aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tr.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-12-03 04:00:26 +0000
committerGuy Harris <guy@alum.mit.edu>2001-12-03 04:00:26 +0000
commitbced8711f67b5dba76e9d6cdfd1a0246b235df27 (patch)
tree6303e298a7b136a1e1da306950398c99e3e71432 /packet-tr.c
parent8d0ea8bc932de5cf57183a593be160515af064d9 (diff)
Make "dissector_add()", "dissector_delete()", and "dissector_change()"
take a dissector handle as an argument, rather than a pointer to a dissector function and a protocol ID. Associate dissector handles with dissector table entries. svn path=/trunk/; revision=4308
Diffstat (limited to 'packet-tr.c')
-rw-r--r--packet-tr.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/packet-tr.c b/packet-tr.c
index aba6276926..6415ad7ab1 100644
--- a/packet-tr.c
+++ b/packet-tr.c
@@ -2,7 +2,7 @@
* Routines for Token-Ring packet disassembly
* Gilbert Ramirez <gram@alumni.rice.edu>
*
- * $Id: packet-tr.c,v 1.66 2001/11/26 04:52:51 hagbard Exp $
+ * $Id: packet-tr.c,v 1.67 2001/12/03 03:59:40 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -674,6 +674,8 @@ proto_register_tr(void)
void
proto_reg_handoff_tr(void)
{
+ dissector_handle_t tr_handle;
+
/*
* Get handles for the TR MAC and LLC dissectors.
*/
@@ -681,6 +683,6 @@ proto_reg_handoff_tr(void)
llc_handle = find_dissector("llc");
data_handle = find_dissector("data");
- dissector_add("wtap_encap", WTAP_ENCAP_TOKEN_RING, dissect_tr,
- proto_tr);
+ tr_handle = find_dissector("tr");
+ dissector_add("wtap_encap", WTAP_ENCAP_TOKEN_RING, tr_handle);
}