aboutsummaryrefslogtreecommitdiffstats
path: root/ui/cli/tap-rtp.c
diff options
context:
space:
mode:
authorJiri Novak <j.novak@netsystem.cz>2018-06-21 14:24:17 +0200
committerAnders Broman <a.broman58@gmail.com>2018-06-23 10:03:54 +0000
commit9f8c332c591cad546f41c10d28135ccaba53e206 (patch)
tree3e2d950d8cabea30bcc318d5ac2f3c535c6ac82d /ui/cli/tap-rtp.c
parentdb4fb82555e9b2acafc56caeaef2888faea82c01 (diff)
downloadwireshark-9f8c332c591cad546f41c10d28135ccaba53e206.tar.gz
wireshark-9f8c332c591cad546f41c10d28135ccaba53e206.tar.bz2
wireshark-9f8c332c591cad546f41c10d28135ccaba53e206.zip
RTP: code cleanup 3
*rtp_stream* -> rtpstream to follow common name Change-Id: I381bc1cdb8206c5cfe67e94dd7fb1a5cb25f9c16 Reviewed-on: https://code.wireshark.org/review/28394 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/cli/tap-rtp.c')
-rw-r--r--ui/cli/tap-rtp.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/ui/cli/tap-rtp.c b/ui/cli/tap-rtp.c
index bab6db924d..0d4e55dff7 100644
--- a/ui/cli/tap-rtp.c
+++ b/ui/cli/tap-rtp.c
@@ -37,18 +37,18 @@
#include "ui/rtp_stream.h"
#include "ui/tap-rtp-common.h"
-void register_tap_listener_rtp_streams(void);
-static void rtp_streams_stat_draw_cb(rtpstream_tapinfo_t *tapinfo);
+void register_tap_listener_rtpstreams(void);
+static void rtpstreams_stat_draw_cb(rtpstream_tapinfo_t *tapinfo);
/* The one and only global rtpstream_tapinfo_t structure for tshark and wireshark.
*/
static rtpstream_tapinfo_t the_tapinfo_struct =
- { NULL, rtp_streams_stat_draw_cb, NULL,
+ { NULL, rtpstreams_stat_draw_cb, NULL,
NULL, 0, NULL, 0, TAP_ANALYSE, NULL, NULL, NULL, FALSE
};
static void
-rtp_streams_stat_draw_cb(rtpstream_tapinfo_t *tapinfo _U_)
+rtpstreams_stat_draw_cb(rtpstream_tapinfo_t *tapinfo _U_)
{
GList *list;
rtpstream_info_t *strinfo;
@@ -100,24 +100,24 @@ rtp_streams_stat_draw_cb(rtpstream_tapinfo_t *tapinfo _U_)
static void
-rtp_streams_stat_init(const char *opt_arg _U_, void *userdata _U_)
+rtpstreams_stat_init(const char *opt_arg _U_, void *userdata _U_)
{
register_tap_listener_rtpstream(&the_tapinfo_struct, NULL, NULL);
}
-static stat_tap_ui rtp_streams_stat_ui = {
+static stat_tap_ui rtpstreams_stat_ui = {
REGISTER_STAT_GROUP_GENERIC,
NULL,
"rtp,streams",
- rtp_streams_stat_init,
+ rtpstreams_stat_init,
0,
NULL
};
void
-register_tap_listener_rtp_streams(void)
+register_tap_listener_rtpstreams(void)
{
- register_stat_tap_ui(&rtp_streams_stat_ui, NULL);
+ register_stat_tap_ui(&rtpstreams_stat_ui, NULL);
}
/*