dect
/
asterisk
Archived
13
0
Fork 0

Add support setting CPC from channel variable

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@190947 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mattf 2009-04-28 22:07:24 +00:00
parent 84eee56841
commit 68a566a861
1 changed files with 5 additions and 0 deletions

View File

@ -3434,6 +3434,7 @@ static int dahdi_call(struct ast_channel *ast, char *rdest, int timeout)
const char *call_ref_id = NULL;
const char *call_ref_pc = NULL;
const char *send_far = NULL;
const char *calling_party_category = NULL;
c = strchr(dest, '/');
if (c) {
@ -3543,6 +3544,10 @@ static int dahdi_call(struct ast_channel *ast, char *rdest, int timeout)
call_ref_pc ? atoi(call_ref_pc) : 0);
}
calling_party_category = pbx_builtin_getvar_helper(ast, "SS7_CALLING_PARTY_CATEGORY");
if (calling_party_category)
isup_set_calling_party_category(p->ss7call, atoi(calling_party_category));
send_far = pbx_builtin_getvar_helper(ast, "SS7_SEND_FAR");
if ((send_far) && ((strncmp("NO", send_far, strlen(send_far))) != 0 ))
(isup_far(p->ss7->ss7, p->ss7call));