dect
/
asterisk
Archived
13
0
Fork 0

Try to see if we can make our ringback situation a little better

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@116797 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mattf 2008-05-16 20:00:04 +00:00
parent ced7edc347
commit 125f7b54e9
1 changed files with 5 additions and 4 deletions

View File

@ -9639,7 +9639,6 @@ static void *ss7_linkset(void *data)
break;
} else {
struct ast_frame f = { AST_FRAME_CONTROL, AST_CONTROL_PROCEEDING, };
struct ast_frame g = { AST_FRAME_CONTROL, AST_CONTROL_PROGRESS, };
p = linkset->pvts[chanpos];
@ -9652,9 +9651,11 @@ static void *ss7_linkset(void *data)
ast_mutex_lock(&p->lock);
zap_queue_frame(p, &f, linkset);
p->proceeding = 1;
zap_queue_frame(p, &g, linkset);
p->progress = 1;
/* Send alerting if subscriber is free */
if (e->acm.called_party_status_ind == 1) {
p->alerting = 1;
p->subs[SUB_REAL].needringing = 1;
}
ast_mutex_unlock(&p->lock);
}
break;