aboutsummaryrefslogtreecommitdiffstats
path: root/packet-atm.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-01-03 10:34:42 +0000
committerGuy Harris <guy@alum.mit.edu>2001-01-03 10:34:42 +0000
commitb151ddecbb6800271e1cc2b8b0d2bb355dadbe89 (patch)
treeb9e74ab80383b0add3d88c281308f9fb06f0b32e /packet-atm.c
parentb92ebd4a23fb75f3972527609abd4f8360489805 (diff)
Have the TR MAC and LLC dissectors register themselves, make them
static, and have other dissectors call them through handles. svn path=/trunk/; revision=2816
Diffstat (limited to 'packet-atm.c')
-rw-r--r--packet-atm.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/packet-atm.c b/packet-atm.c
index f3630e8100..ab070798e1 100644
--- a/packet-atm.c
+++ b/packet-atm.c
@@ -1,7 +1,7 @@
/* packet-atm.c
* Routines for ATM packet disassembly
*
- * $Id: packet-atm.c,v 1.29 2001/01/03 06:55:27 guy Exp $
+ * $Id: packet-atm.c,v 1.30 2001/01/03 10:34:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -482,6 +482,8 @@ static const value_string ipsilon_type_vals[] = {
{ 0, NULL }
};
+static dissector_handle_t llc_handle;
+
/*
* We don't know what kind of traffic this is; try to guess.
* We at least know it's AAL5....
@@ -731,7 +733,7 @@ dissect_atm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* Dissect as WTAP_ENCAP_ATM_RFC1483 */
/* The ATM iptrace capture that we have shows LLC at this point,
* so that's what I'm calling */
- dissect_llc(tvb, &pi, tree);
+ call_dissector(llc_handle, tvb, pinfo, tree);
break;
case ATT_HL_LANE:
@@ -794,5 +796,10 @@ proto_register_atm(void)
void
proto_reg_handoff_atm(void)
{
+ /*
+ * Get a handle for the LLC dissector.
+ */
+ llc_handle = find_dissector("llc");
+
dissector_add("wtap_encap", WTAP_ENCAP_ATM_SNIFFER, dissect_atm);
}