Displaying 1 result from an estimated 1 matches for "getcallingpartynumb".
Did you mean:
getcallingpartynumber
2003 May 16
0
OpenH323 channel driver, Q931 Calling party number
...crude hack in our GnuGK to always change those so that our
numbers
are displayed.
ProxyChannel.cxx:~513:
if (m_lastQ931->HasIE(Q931::CallingPartyNumberIE)) {
unsigned plan, type;
PString oldnumber;
m_lastQ931->GetCallingPartyNumber(oldnumber,
&plan, &type);
m_lastQ931->SetCallingPartyNumber(oldnumber,
plan, 2);
changed = true;
}
However as I would like to disable the use of GnuGK as a h.323 proxy,
I'd would very much like to see something in asterisk t...