From bced8711f67b5dba76e9d6cdfd1a0246b235df27 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 3 Dec 2001 04:00:26 +0000 Subject: 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 --- packet-icp.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'packet-icp.c') 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 + * 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); } -- cgit v1.2.3