summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Jordan <mjordan@digium.com>2015-09-09 19:12:05 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2015-09-09 19:12:05 -0500
commit49b13d56249f35e61894c6dabaab6f8e0e95cd78 (patch)
tree77c0e6f21b9840d2bef746c000219f3dc10878db
parentf72f9ceefca52002c45f5910219dbcb0f9437a79 (diff)
parent71408df2b82c932329d250a6077475e4f51a2b0d (diff)
Merge "chan_ooh323: Add ProgressIndicator IE with inband info available" into 13
-rw-r--r--addons/ooh323c/src/ooq931.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/addons/ooh323c/src/ooq931.c b/addons/ooh323c/src/ooq931.c
index 86ecd9205..cbc4afb0a 100644
--- a/addons/ooh323c/src/ooq931.c
+++ b/addons/ooh323c/src/ooq931.c
@@ -758,14 +758,14 @@ int ooEncodeH225Message(OOH323CallData *call, Q931Message *pq931Msg,
i += pq931Msg->causeIE->length;
}
- /*Add progress indicator IE
- if(pq931Msg->messageType == Q931AlertingMsg || pq931Msg->messageType == Q931CallProceedingMsg)
+ /* Add progress indicator IE */
+ if(pq931Msg->messageType == Q931AlertingMsg || pq931Msg->messageType == Q931ProgressMsg)
{
msgbuf[i++] = Q931ProgressIndicatorIE;
msgbuf[i++] = 2; //Length is 2 octet
msgbuf[i++] = 0x80; //PI=8
msgbuf[i++] = 0x88;
- }*/
+ }
/*Add display ie. for all but Status message as per ASTERISK-18748 */
if(!ooUtilsIsStrEmpty(call->ourCallerId) && (pq931Msg->messageType != Q931StatusMsg))