summaryrefslogtreecommitdiff
path: root/main/rtp.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-12-06 07:28:56 +0000
committerRussell Bryant <russell@russellbryant.com>2006-12-06 07:28:56 +0000
commit17a2888d2ecce2be86805e0350fa68c6a2298b71 (patch)
tree27838547cec4633c54c59f30624fe0e640633c38 /main/rtp.c
parenta44e55a3f3efdc5dde27954dfcf5e1e5da579971 (diff)
Staticize one, and Constify a bunch of usage strings for CLI commands.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48303 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/rtp.c')
-rw-r--r--main/rtp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/main/rtp.c b/main/rtp.c
index 7163f1601..72780cf47 100644
--- a/main/rtp.c
+++ b/main/rtp.c
@@ -3412,35 +3412,35 @@ static int stun_no_debug(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
-static char debug_usage[] =
+static const char debug_usage[] =
"Usage: rtp debug [ip host[:port]]\n"
" Enable dumping of all RTP packets to and from host.\n";
-static char no_debug_usage[] =
+static const char no_debug_usage[] =
"Usage: rtp debug off\n"
" Disable all RTP debugging\n";
-static char stun_debug_usage[] =
+static const char stun_debug_usage[] =
"Usage: stun debug\n"
" Enable STUN (Simple Traversal of UDP through NATs) debugging\n";
-static char stun_no_debug_usage[] =
+static const char stun_no_debug_usage[] =
"Usage: stun debug off\n"
" Disable STUN debugging\n";
-static char rtcp_debug_usage[] =
+static const char rtcp_debug_usage[] =
"Usage: rtcp debug [ip host[:port]]\n"
" Enable dumping of all RTCP packets to and from host.\n";
-static char rtcp_no_debug_usage[] =
+static const char rtcp_no_debug_usage[] =
"Usage: rtcp debug off\n"
" Disable all RTCP debugging\n";
-static char rtcp_stats_usage[] =
+static const char rtcp_stats_usage[] =
"Usage: rtcp stats\n"
" Enable dumping of RTCP stats.\n";
-static char rtcp_no_stats_usage[] =
+static const char rtcp_no_stats_usage[] =
"Usage: rtcp stats off\n"
" Disable all RTCP stats\n";