mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
automerge commit
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@41432 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2331,6 +2331,7 @@ static int hangup_sip2cause(int cause)
|
||||
switch(cause) {
|
||||
case 603: /* Declined */
|
||||
case 403: /* Not found */
|
||||
case 487: /* Call cancelled */
|
||||
return AST_CAUSE_CALL_REJECTED;
|
||||
case 404: /* Not found */
|
||||
return AST_CAUSE_UNALLOCATED;
|
||||
@@ -2862,10 +2863,8 @@ static struct ast_channel *sip_new(struct sip_pvt *i, int state, char *title)
|
||||
ast_copy_string(tmp->context, i->context, sizeof(tmp->context));
|
||||
ast_copy_string(tmp->exten, i->exten, sizeof(tmp->exten));
|
||||
|
||||
if (!ast_strlen_zero(i->cid_num)) {
|
||||
if (!ast_strlen_zero(i->cid_num))
|
||||
tmp->cid.cid_num = strdup(i->cid_num);
|
||||
tmp->cid.cid_ani = strdup(i->cid_num);
|
||||
}
|
||||
if (!ast_strlen_zero(i->cid_name))
|
||||
tmp->cid.cid_name = strdup(i->cid_name);
|
||||
if (!ast_strlen_zero(i->rdnis))
|
||||
@@ -10172,6 +10171,8 @@ static void handle_response(struct sip_pvt *p, int resp, char *rest, struct sip_
|
||||
break;
|
||||
case 487:
|
||||
/* channel now destroyed - dec the inUse counter */
|
||||
if (owner)
|
||||
ast_queue_hangup(p->owner);
|
||||
update_call_counter(p, DEC_CALL_LIMIT);
|
||||
break;
|
||||
case 482: /* SIP is incapable of performing a hairpin call, which
|
||||
|
Reference in New Issue
Block a user