aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-19 20:28:08 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-19 20:28:08 +0000
commit9add8b52cc14cac39572c63246d9df622ec37093 (patch)
treeece6de57b0a1c0a1be504520bac999afd0188002 /channels
parent5d136d4cd0092c4d97bba395674a3deb19e640dd (diff)
Send CallerID Name in setup message.
(closes issue #11241) Reported by: tusar Patches: h323id_as_callerid_name.patch uploaded by tusar (license 344) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@103823 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/h323/ast_h323.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/channels/h323/ast_h323.cxx b/channels/h323/ast_h323.cxx
index f037a8887..83c1a8464 100644
--- a/channels/h323/ast_h323.cxx
+++ b/channels/h323/ast_h323.cxx
@@ -718,7 +718,8 @@ void MyH323Connection::SetCallOptions(void *o, BOOL isIncoming)
fastStartState = (opts->fastStart ? FastStartInitiate : FastStartDisabled);
h245Tunneling = (opts->h245Tunneling ? TRUE : FALSE);
} else {
- SetLocalPartyName(PString(opts->cid_num));
+ sourceE164 = PString(opts->cid_num);
+ SetLocalPartyName(PString(opts->cid_name));
SetDisplayName(PString(opts->cid_name));
if (opts->redirect_reason >= 0) {
rdnis = PString(opts->cid_rdnis);
@@ -1247,7 +1248,7 @@ BOOL MyH323Connection::OnSendSignalSetup(H323SignalPDU & setupPDU)
/* OpenH323 will build calling party information with default
type and presentation information, so build it to be recorded
by embedding routines */
- setupPDU.GetQ931().SetCallingPartyNumber(GetLocalPartyName(), (cid_ton >> 4) & 0x07,
+ setupPDU.GetQ931().SetCallingPartyNumber(sourceE164, (cid_ton >> 4) & 0x07,
cid_ton & 0x0f, (cid_presentation >> 5) & 0x03, cid_presentation & 0x1f);
setupPDU.GetQ931().SetDisplayName(GetDisplayName());