diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-12-03 04:00:26 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-12-03 04:00:26 +0000 |
commit | bced8711f67b5dba76e9d6cdfd1a0246b235df27 (patch) | |
tree | 6303e298a7b136a1e1da306950398c99e3e71432 /packet-llc.c | |
parent | 8d0ea8bc932de5cf57183a593be160515af064d9 (diff) | |
download | wireshark-bced8711f67b5dba76e9d6cdfd1a0246b235df27.tar.gz wireshark-bced8711f67b5dba76e9d6cdfd1a0246b235df27.tar.bz2 wireshark-bced8711f67b5dba76e9d6cdfd1a0246b235df27.zip |
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-llc.c')
-rw-r--r-- | packet-llc.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packet-llc.c b/packet-llc.c index 0058f7ede0..27cb7630fe 100644 --- a/packet-llc.c +++ b/packet-llc.c @@ -2,7 +2,7 @@ * Routines for IEEE 802.2 LLC layer * Gilbert Ramirez <gram@alumni.rice.edu> * - * $Id: packet-llc.c,v 1.90 2001/11/25 22:51:13 hagbard Exp $ + * $Id: packet-llc.c,v 1.91 2001/12/03 03:59:36 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -559,6 +559,8 @@ proto_register_llc(void) void proto_reg_handoff_llc(void) { + dissector_handle_t llc_handle; + /* * Get handles for the BPDU, Ethernet, FDDI, and Token Ring * dissectors. @@ -569,6 +571,6 @@ proto_reg_handoff_llc(void) tr_handle = find_dissector("tr"); data_handle = find_dissector("data"); - dissector_add("wtap_encap", WTAP_ENCAP_ATM_RFC1483, dissect_llc, - proto_llc); + llc_handle = find_dissector("llc"); + dissector_add("wtap_encap", WTAP_ENCAP_ATM_RFC1483, llc_handle); } |