aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-udp.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-12-30 23:26:19 -0500
committerAnders Broman <a.broman58@gmail.com>2015-01-02 00:02:18 +0000
commit860cb393d86fccd01c924b6ea2e565be8ca56698 (patch)
tree60ad77b05717f4470a47a49900cc3b43e1a5625f /epan/dissectors/packet-udp.c
parent07c9492b8d40ed766074679f86c49780277af002 (diff)
tshark: Add endpoints statistics
"stat name" has been official changed to "endpoints" for all dissectors, rather than a mixture of "host"/"endpoints" based on dissector. Change-Id: If34bcb5165b493948e784ba038ab202803a59843 Reviewed-on: https://code.wireshark.org/review/6154 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-udp.c')
-rw-r--r--epan/dissectors/packet-udp.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/epan/dissectors/packet-udp.c b/epan/dissectors/packet-udp.c
index 35301677a8..02cc1fb8f1 100644
--- a/epan/dissectors/packet-udp.c
+++ b/epan/dissectors/packet-udp.c
@@ -371,12 +371,6 @@ udpip_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, co
return 1;
}
-static const char*
-udpip_hostlist_prefix(void)
-{
- return "endpoints";
-}
-
static gboolean
udp_color_filter_valid(packet_info *pinfo)
{
@@ -1012,7 +1006,7 @@ proto_register_udp(void)
&udplite_check_checksum);
register_decode_as(&udp_da);
- register_conversation_table(proto_udp, FALSE, udpip_conversation_packet, udpip_hostlist_packet, udpip_hostlist_prefix);
+ register_conversation_table(proto_udp, FALSE, udpip_conversation_packet, udpip_hostlist_packet);
register_color_conversation_filter("udp", "UDP", udp_color_filter_valid, udp_build_color_filter);
register_init_routine(udp_init);