From 125f7b54e99595cdfd25355a3caeb328b0906158 Mon Sep 17 00:00:00 2001 From: mattf Date: Fri, 16 May 2008 20:00:04 +0000 Subject: 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 --- channels/chan_zap.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'channels/chan_zap.c') diff --git a/channels/chan_zap.c b/channels/chan_zap.c index dfc6d6013..fcc8e1546 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -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; -- cgit v1.2.3