summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Golovich <james@gnuinter.net>2004-03-15 05:57:47 +0000
committerJames Golovich <james@gnuinter.net>2004-03-15 05:57:47 +0000
commitc30ff0935d896c337fd9e72f560d924666fc044e (patch)
treeb6873f59717d76be22060ede43392e459056a602
parent200ae6755179a1788ff8c393468fcfa837156ba2 (diff)
Add 'pri show span <spanno>' command to chan_zap.c
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2433 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannels/chan_zap.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index c153063e9..dd089f5fb 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -6840,6 +6840,29 @@ static int handle_pri_really_debug(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
+static int handle_pri_show_span(int fd, int argc, char *argv[])
+{
+ int span;
+ if (argc < 4)
+ return RESULT_SHOWUSAGE;
+ span = atoi(argv[3]);
+ if ((span < 1) || (span > NUM_SPANS)) {
+ ast_cli(fd, "Invalid span %s. Should be a number %d to %d\n", argv[4], 1, NUM_SPANS);
+ return RESULT_SUCCESS;
+ }
+ if (!pris[span-1].pri) {
+ ast_cli(fd, "No PRI running on span %d\n", span);
+ return RESULT_SUCCESS;
+ }
+#ifdef PRI_DUMP_INFO
+ pri_dump_info(pris[span-1].pri);
+#else
+#warning Please update libpri. pri_dump_info not found
+ ast_log(LOG_WARNING, "Please update libpri. pri_dump_info not available\n");
+#endif
+ return RESULT_SUCCESS;
+}
+
static char pri_debug_help[] =
"Usage: pri debug span <span>\n"
" Enables debugging on a given PRI span\n";
@@ -6852,6 +6875,10 @@ static char pri_really_debug_help[] =
"Usage: pri intensive debug span <span>\n"
" Enables debugging down to the Q.921 level\n";
+static char pri_show_span_help[] =
+ "Usage: pri show span <span>\n"
+ " Displays PRI Information\n";
+
static struct ast_cli_entry pri_debug = {
{ "pri", "debug", "span", NULL }, handle_pri_debug, "Enables PRI debugging on a span", pri_debug_help, complete_span };
@@ -6861,6 +6888,9 @@ static struct ast_cli_entry pri_no_debug = {
static struct ast_cli_entry pri_really_debug = {
{ "pri", "intense", "debug", "span", NULL }, handle_pri_really_debug, "Enables REALLY INTENSE PRI debugging", pri_really_debug_help, complete_span };
+static struct ast_cli_entry pri_show_span = {
+ { "pri", "show", "span", NULL }, handle_pri_show_span, "Displays PRI Information", pri_show_span_help, complete_span };
+
#endif /* ZAPATA_PRI */
@@ -7253,6 +7283,7 @@ static int __unload_module(void)
ast_cli_unregister(&pri_debug);
ast_cli_unregister(&pri_no_debug);
ast_cli_unregister(&pri_really_debug);
+ ast_cli_unregister(&pri_show_span);
#endif
#ifdef ZAPATA_R2
ast_cli_unregister(&r2_debug);
@@ -7823,6 +7854,7 @@ int load_module(void)
ast_cli_register(&pri_debug);
ast_cli_register(&pri_no_debug);
ast_cli_register(&pri_really_debug);
+ ast_cli_register(&pri_show_span);
#endif
#ifdef ZAPATA_R2
ast_cli_register(&r2_debug);