Merged revisions 115598 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

........
r115598 | mattf | 2008-05-10 21:19:21 -0500 (Sat, 10 May 2008) | 1 line

Open up audio channel when we get ACM on SS7 event
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@115599 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Matthew Fredrickson
2008-05-11 02:24:39 +00:00
parent cbdbbf7819
commit 1e42ac8e05

View File

@@ -9625,6 +9625,7 @@ 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];
@@ -9637,6 +9638,8 @@ 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;
ast_mutex_unlock(&p->lock);
}