[svn-commits] trunk r32740 - /trunk/channels/chan_zap.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Tue Jun 6 15:19:20 MST 2006
Author: mattf
Date: Tue Jun 6 17:19:19 2006
New Revision: 32740
URL: http://svn.digium.com/view/asterisk?rev=32740&view=rev
Log:
Add q.921 state information. (#7260)
Modified:
trunk/channels/chan_zap.c
Modified: trunk/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_zap.c?rev=32740&r1=32739&r2=32740&view=diff
==============================================================================
--- trunk/channels/chan_zap.c (original)
+++ trunk/channels/chan_zap.c Tue Jun 6 17:19:19 2006
@@ -9375,7 +9375,9 @@
}
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 @@
}
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;
More information about the svn-commits
mailing list