From c5e22ceda7475551ce36e74cebca688ef0472ee8 Mon Sep 17 00:00:00 2001 From: guy Date: Mon, 20 Dec 2010 05:35:29 +0000 Subject: Rename the routines that handle dissector tables with unsigned integer keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35224 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-scop.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'epan/dissectors/packet-scop.c') diff --git a/epan/dissectors/packet-scop.c b/epan/dissectors/packet-scop.c index 783f2d85fe..887aeade9c 100644 --- a/epan/dissectors/packet-scop.c +++ b/epan/dissectors/packet-scop.c @@ -414,15 +414,15 @@ void proto_reg_handoff_scop(void) data_handle = find_dissector("data"); inited = TRUE; } else { - dissector_delete("udp.port", lastPort, scop_udp_handle); - dissector_delete("tcp.port", lastPort, scop_tcp_handle); - dissector_delete("udp.port", lastPort_secured, scop_udp_handle); - dissector_delete("tcp.port", lastPort_secured, scop_tcp_handle); + dissector_delete_uint("udp.port", lastPort, scop_udp_handle); + dissector_delete_uint("tcp.port", lastPort, scop_tcp_handle); + dissector_delete_uint("udp.port", lastPort_secured, scop_udp_handle); + dissector_delete_uint("tcp.port", lastPort_secured, scop_tcp_handle); } - dissector_add("udp.port", gPREF_scop_port, scop_udp_handle); - dissector_add("tcp.port", gPREF_scop_port, scop_tcp_handle); - dissector_add("udp.port", gPREF_scop_port_secured, scop_udp_handle); - dissector_add("tcp.port", gPREF_scop_port_secured, scop_tcp_handle); + dissector_add_uint("udp.port", gPREF_scop_port, scop_udp_handle); + dissector_add_uint("tcp.port", gPREF_scop_port, scop_tcp_handle); + dissector_add_uint("udp.port", gPREF_scop_port_secured, scop_udp_handle); + dissector_add_uint("tcp.port", gPREF_scop_port_secured, scop_tcp_handle); lastPort = gPREF_scop_port; lastPort_secured = gPREF_scop_port_secured; -- cgit v1.2.3