aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tipc.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-12-20 05:35:29 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-12-20 05:35:29 +0000
commitc5e22ceda7475551ce36e74cebca688ef0472ee8 (patch)
tree2587cbb5c31f65afc60711d38d5dcc79a5a689e6 /epan/dissectors/packet-tipc.c
parent93cdc8bba37d601a0e3f8b92b80a93d980454ff5 (diff)
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
Diffstat (limited to 'epan/dissectors/packet-tipc.c')
-rw-r--r--epan/dissectors/packet-tipc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-tipc.c b/epan/dissectors/packet-tipc.c
index f1ccb24a29..9e91415d5d 100644
--- a/epan/dissectors/packet-tipc.c
+++ b/epan/dissectors/packet-tipc.c
@@ -1563,7 +1563,7 @@ call_tipc_v2_data_subdissectors(tvbuff_t *data_tvb, packet_info *pinfo, guint32
}
/* This triggers if a dissectors if
* tipc.user is just set to a TIPC user holding data */
- if (dissector_try_port(tipc_user_dissector, user, data_tvb, pinfo, top_tree))
+ if (dissector_try_uint(tipc_user_dissector, user, data_tvb, pinfo, top_tree))
return;
/* The Name Type is not always explicitly set in a TIPC Data
* Message.
@@ -1597,7 +1597,7 @@ call_tipc_v2_data_subdissectors(tvbuff_t *data_tvb, packet_info *pinfo, guint32
* some kind of static function which port name type a message
* is going to, if it is not specified explicitly in a message */
if (name_type_p)
- if (dissector_try_port(tipc_type_dissector, *name_type_p, data_tvb, pinfo, top_tree))
+ if (dissector_try_uint(tipc_type_dissector, *name_type_p, data_tvb, pinfo, top_tree))
return;
/* check for heuristic dissectors if specified in the
* preferences not to try them first */
@@ -2957,16 +2957,16 @@ proto_reg_handoff_tipc(void)
ip_handle = find_dissector("ip");
data_handle = find_dissector("data");
- dissector_add("ethertype", ETHERTYPE_TIPC, tipc_handle);
+ dissector_add_uint("ethertype", ETHERTYPE_TIPC, tipc_handle);
inited = TRUE;
} else {
/* change TIPC-over-TCP port if changed in the preferences */
if (tipc_alternate_tcp_port != tipc_alternate_tcp_port_prev) {
if (tipc_alternate_tcp_port_prev != 0)
- dissector_delete("tcp.port", tipc_alternate_tcp_port_prev, tipc_tcp_handle);
+ dissector_delete_uint("tcp.port", tipc_alternate_tcp_port_prev, tipc_tcp_handle);
if (tipc_alternate_tcp_port != 0)
- dissector_add("tcp.port", tipc_alternate_tcp_port, tipc_tcp_handle);
+ dissector_add_uint("tcp.port", tipc_alternate_tcp_port, tipc_tcp_handle);
tipc_alternate_tcp_port_prev = tipc_alternate_tcp_port;
}
}