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-eap.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'packet-eap.c') diff --git a/packet-eap.c b/packet-eap.c index 0f89eba724..27759713d2 100644 --- a/packet-eap.c +++ b/packet-eap.c @@ -1,7 +1,7 @@ /* packet-eap.c * Routines for EAP Extensible Authentication Protocol header disassembly * - * $Id: packet-eap.c,v 1.2 2001/11/26 04:52:49 hagbard Exp $ + * $Id: packet-eap.c,v 1.3 2001/12/03 03:59:34 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -154,6 +154,9 @@ proto_register_eap(void) void proto_reg_handoff_eap(void) { + dissector_handle_t eap_handle; + data_handle = find_dissector("data"); - dissector_add("ppp.protocol", PPP_EAP, dissect_eap, proto_eap); + eap_handle = create_dissector_handle(dissect_eap, proto_eap); + dissector_add("ppp.protocol", PPP_EAP, eap_handle); } -- cgit v1.2.1