Bring sanity to inband notification on PRI

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3773 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2004-09-13 22:14:34 +00:00
parent 4d6b943ea4
commit 3cb1d7843b
1 changed files with 8 additions and 6 deletions

View File

@ -4174,9 +4174,10 @@ static int zt_indicate(struct ast_channel *chan, int condition)
switch(condition) {
case AST_CONTROL_BUSY:
#ifdef ZAPATA_PRI
if (p->priindication_oob && p->sig == SIG_PRI)
res = pri_hangup(p->pri->pri, p->call, PRI_CAUSE_USER_BUSY);
else
if (p->priindication_oob && p->sig == SIG_PRI) {
chan->hangupcause = AST_CAUSE_USER_BUSY;
chan->_softhangup |= AST_SOFTHANGUP_DEV;
} else
#endif
res = tone_zone_play_tone(p->subs[index].zfd, ZT_TONE_BUSY);
break;
@ -4242,9 +4243,10 @@ static int zt_indicate(struct ast_channel *chan, int condition)
case AST_CONTROL_CONGESTION:
chan->hangupcause = AST_CAUSE_CONGESTION;
#ifdef ZAPATA_PRI
if (p->priindication_oob && p->sig == SIG_PRI)
res = pri_hangup(p->pri->pri, p->call, PRI_CAUSE_SWITCH_CONGESTION);
else
if (p->priindication_oob && p->sig == SIG_PRI) {
chan->hangupcause = AST_CAUSE_SWITCH_CONGESTION;
chan->_softhangup |= AST_SOFTHANGUP_DEV;
} else
#endif
res = tone_zone_play_tone(p->subs[index].zfd, ZT_TONE_CONGESTION);
break;