mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Add q.921 state information. (#7260)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32740 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -9375,7 +9375,9 @@ static int handle_pri_debug(int fd, int argc, char *argv[])
|
||||
}
|
||||
for (x = 0; x < NUM_DCHANS; x++) {
|
||||
if (pris[span-1].dchans[x])
|
||||
pri_set_debug(pris[span-1].dchans[x], PRI_DEBUG_APDU | PRI_DEBUG_Q931_DUMP | PRI_DEBUG_Q931_STATE);
|
||||
pri_set_debug(pris[span-1].dchans[x], PRI_DEBUG_APDU |
|
||||
PRI_DEBUG_Q931_DUMP | PRI_DEBUG_Q931_STATE |
|
||||
PRI_DEBUG_Q921_STATE);
|
||||
}
|
||||
ast_cli(fd, "Enabled debugging on span %d\n", span);
|
||||
return RESULT_SUCCESS;
|
||||
@@ -9423,7 +9425,9 @@ static int handle_pri_really_debug(int fd, int argc, char *argv[])
|
||||
}
|
||||
for (x = 0; x < NUM_DCHANS; x++) {
|
||||
if (pris[span-1].dchans[x])
|
||||
pri_set_debug(pris[span-1].dchans[x], (PRI_DEBUG_APDU | PRI_DEBUG_Q931_DUMP | PRI_DEBUG_Q921_DUMP | PRI_DEBUG_Q921_RAW | PRI_DEBUG_Q921_STATE));
|
||||
pri_set_debug(pris[span-1].dchans[x], PRI_DEBUG_APDU |
|
||||
PRI_DEBUG_Q931_DUMP | PRI_DEBUG_Q931_STATE |
|
||||
PRI_DEBUG_Q921_RAW | PRI_DEBUG_Q921_DUMP | PRI_DEBUG_Q921_STATE);
|
||||
}
|
||||
ast_cli(fd, "Enabled EXTENSIVE debugging on span %d\n", span);
|
||||
return RESULT_SUCCESS;
|
||||
|
Reference in New Issue
Block a user