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-icp.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-icp.c')
-rw-r--r-- | packet-icp.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/packet-icp.c b/packet-icp.c index 84ab7e228c..4036fe8295 100644 --- a/packet-icp.c +++ b/packet-icp.c @@ -1,13 +1,15 @@ /* packet-icp.c * Routines for ICP (internet cache protocol) packet disassembly * RFC 2186 && RFC 2187 + * By Peter Torvals + * Copyright 1999 Peter Torvals * - * $Id: packet-icp.c,v 1.18 2001/06/18 02:17:46 guy Exp $ + * $Id: packet-icp.c,v 1.19 2001/12/03 03:59:35 guy Exp $ * * Ethereal - Network traffic analyzer - * By Peter Torvals - * Copyright 1999 Peter Torvals - + * By Gerald Combs <gerald@ethereal.com> + * Copyright 1998 + * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 @@ -253,5 +255,8 @@ proto_register_icp(void) void proto_reg_handoff_icp(void) { - dissector_add("udp.port", UDP_PORT_ICP, dissect_icp, proto_icp); + dissector_handle_t icp_handle; + + icp_handle = create_dissector_handle(dissect_icp, proto_icp); + dissector_add("udp.port", UDP_PORT_ICP, icp_handle); } |