aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-10 21:52:43 +0000
committermattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-10 21:52:43 +0000
commit93a3fdb814204b4c87e43f8f94f8afa30f43593a (patch)
treefd1624ae48b01f9c6a86e641ab8905aec97ef413
parent6757232639b863a809c5ba598cff52d05151f4c8 (diff)
chan_zap.c portion of PRI show debug command (Bug #3985)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5621 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xchannels/chan_zap.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 727d07aec..e29e3903d 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -288,6 +288,7 @@ static int ifcount = 0;
AST_MUTEX_DEFINE_STATIC(pridebugfdlock);
static int pridebugfd = -1;
+static char pridebugfilename[1024]="";
/* Whether we answer on a Polarity Switch event */
static int answeronpolarityswitch = 0;
@@ -8684,6 +8685,8 @@ static int handle_pri_set_debug_file(int fd, int argc, char **argv)
close(pridebugfd);
pridebugfd = myfd;
+ strncpy(pridebugfilename,argv[4],sizeof(pridebugfilename)-1);
+
ast_mutex_unlock(&pridebugfdlock);
ast_cli(fd, "PRI debug output will be sent to '%s'\n", argv[4]);
@@ -8831,6 +8834,36 @@ static int handle_pri_show_span(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
+static int handle_pri_show_debug(int fd, int argc, char *argv[])
+{
+ int x;
+ int span;
+ int count=0;
+ int debug=0;
+
+ for(span=0;span<NUM_SPANS;span++) {
+ if (pris[span].pri) {
+ for(x=0;x<NUM_DCHANS;x++) {
+ debug=0;
+ if (pris[span].dchans[x]) {
+ debug = pri_get_debug(pris[span].dchans[x]);
+ ast_cli(fd, "Span %d: Debug: %s\tIntense: %s\n", span+1, (debug&PRI_DEBUG_Q931_STATE)? "Yes" : "No" ,(debug&PRI_DEBUG_Q921_RAW)? "Yes" : "No" );
+ count++;
+ }
+ }
+ }
+
+ }
+ ast_mutex_lock(&pridebugfdlock);
+ if (pridebugfd >= 0)
+ ast_cli(fd, "Logging PRI debug to file %s\n", pridebugfilename);
+ ast_mutex_unlock(&pridebugfdlock);
+
+ if (!count)
+ ast_cli(fd, "No debug set or no PRI running\n");
+ return RESULT_SUCCESS;
+}
+
static char pri_debug_help[] =
"Usage: pri debug span <span>\n"
" Enables debugging on a given PRI span\n";
@@ -8859,6 +8892,9 @@ static struct ast_cli_entry pri_really_debug = {
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_4 };
+static struct ast_cli_entry pri_show_debug= {
+ { "pri", "show", "debug", NULL }, handle_pri_show_debug, "Displays current PRI debug settings", NULL, NULL };
+
static struct ast_cli_entry pri_set_debug_file = {
{ "pri", "set", "debug", "file", NULL }, handle_pri_set_debug_file, "Sends PRI debug output to the specified file", NULL, NULL };
@@ -9421,6 +9457,7 @@ static int __unload_module(void)
ast_cli_unregister(&pri_no_debug);
ast_cli_unregister(&pri_really_debug);
ast_cli_unregister(&pri_show_span);
+ ast_cli_unregister(&pri_show_debug);
ast_cli_unregister(&pri_set_debug_file);
ast_cli_unregister(&pri_unset_debug_file);
#endif
@@ -10300,6 +10337,7 @@ int load_module(void)
ast_cli_register(&pri_no_debug);
ast_cli_register(&pri_really_debug);
ast_cli_register(&pri_show_span);
+ ast_cli_register(&pri_show_debug);
ast_cli_register(&pri_set_debug_file);
ast_cli_register(&pri_unset_debug_file);
#endif