aboutsummaryrefslogtreecommitdiffstats
path: root/packet-wtls.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-12-03 04:00:26 +0000
committerGuy Harris <guy@alum.mit.edu>2001-12-03 04:00:26 +0000
commitbced8711f67b5dba76e9d6cdfd1a0246b235df27 (patch)
tree6303e298a7b136a1e1da306950398c99e3e71432 /packet-wtls.c
parent8d0ea8bc932de5cf57183a593be160515af064d9 (diff)
downloadwireshark-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-wtls.c')
-rw-r--r--packet-wtls.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/packet-wtls.c b/packet-wtls.c
index 86f1ce21df..393956d725 100644
--- a/packet-wtls.c
+++ b/packet-wtls.c
@@ -2,7 +2,7 @@
*
* Routines to dissect WTLS component of WAP traffic.
*
- * $Id: packet-wtls.c,v 1.14 2001/12/03 02:10:31 guy Exp $
+ * $Id: packet-wtls.c,v 1.15 2001/12/03 03:59:43 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1636,13 +1636,16 @@ proto_register_wtls(void)
void
proto_reg_handoff_wtls(void)
{
+ dissector_handle_t wtls_handle;
+
/*
* Get handles for the WTP and connectionless WSP dissectors.
*/
wtp_handle = find_dissector("wtp");
wsp_handle = find_dissector("wsp-cl");
- dissector_add("udp.port", UDP_PORT_WTLS_WSP, dissect_wtls, proto_wtls);
- dissector_add("udp.port", UDP_PORT_WTLS_WTP_WSP, dissect_wtls, proto_wtls);
- dissector_add("udp.port", UDP_PORT_WTLS_WSP_PUSH,dissect_wtls, proto_wtls);
+ wtls_handle = create_dissector_handle(dissect_wtls, proto_wtls);
+ dissector_add("udp.port", UDP_PORT_WTLS_WSP, wtls_handle);
+ dissector_add("udp.port", UDP_PORT_WTLS_WTP_WSP, wtls_handle);
+ dissector_add("udp.port", UDP_PORT_WTLS_WSP_PUSH,wtls_handle);
}