[asterisk-bugs] [JIRA] (ASTERISK-22020) ooh323 Q931DisplayIE causes Anonymous on phone displays
Rusty Newton (JIRA)
noreply at issues.asterisk.org
Wed Sep 4 19:03:04 CDT 2013
[ https://issues.asterisk.org/jira/browse/ASTERISK-22020?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Rusty Newton reassigned ASTERISK-22020:
---------------------------------------
Assignee: Alexander Anikin (was: Rusty Newton)
> ooh323 Q931DisplayIE causes Anonymous on phone displays
> -------------------------------------------------------
>
> Key: ASTERISK-22020
> URL: https://issues.asterisk.org/jira/browse/ASTERISK-22020
> Project: Asterisk
> Issue Type: Improvement
> Security Level: None
> Components: Addons/chan_ooh323
> Affects Versions: 1.8.22.0
> Reporter: Ross Beer
> Assignee: Alexander Anikin
>
> When using Asterisk as a H323 <-> SIP gateway there is an issue with handsets on the H323 PBX showing 'Anonymous' on their displays which is the default Caller ID on Asterisk config.
> The phones should display the called party number which requires the following modification on the source code:
> {code}
> if(!ooUtilsIsStrEmpty(call->calledPartyNumber) && (pq931Msg->messageType != Q931StatusMsg))
> {
> msgbuf[i++] = Q931DisplayIE;
> ieLen = strlen(call->calledPartyNumber)+1;
> msgbuf[i++] = ieLen;
> memcpy(msgbuf+i, call->calledPartyNumber, ieLen-1);
> i += ieLen-1;
> msgbuf[i++] = '\0';
> }
> {code}
> Would it be possible to have an option in the config to allow the setting of the Q931DisplayIE to either the local caller ID or the called party number?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.asterisk.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the asterisk-bugs
mailing list