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-mpls.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-mpls.c')
-rw-r--r-- | packet-mpls.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/packet-mpls.c b/packet-mpls.c index c49ddafca3..dbb1b1d174 100644 --- a/packet-mpls.c +++ b/packet-mpls.c @@ -3,7 +3,7 @@ * * (c) Copyright Ashok Narayanan <ashokn@cisco.com> * - * $Id: packet-mpls.c,v 1.22 2001/11/07 20:26:37 guy Exp $ + * $Id: packet-mpls.c,v 1.23 2001/12/03 03:59:37 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -206,12 +206,15 @@ proto_register_mpls(void) void proto_reg_handoff_mpls(void) { + dissector_handle_t mpls_handle; + /* * Get a handle for the IPv4 and IPv6 dissectors. */ ipv4_handle = find_dissector("ip"); ipv6_handle = find_dissector("ipv6"); - dissector_add("ethertype", ETHERTYPE_MPLS, dissect_mpls, proto_mpls); - dissector_add("ppp.protocol", PPP_MPLS_UNI, dissect_mpls, proto_mpls); + mpls_handle = create_dissector_handle(dissect_mpls, proto_mpls); + dissector_add("ethertype", ETHERTYPE_MPLS, mpls_handle); + dissector_add("ppp.protocol", PPP_MPLS_UNI, mpls_handle); } |