summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-06-09 22:23:21 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-06-09 22:23:21 +0000
commit439002c8986d38efad1e94cd057fe1e8e67d3799 (patch)
treea91db4b2308092ac16f640c8e045d5a2610334e7
parentd617e890a62dc9e6052a99cc89f6650289d6a140 (diff)
make zap-transfers to busy/congestion channels behave more reasonably (bug #4495)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5892 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannels/chan_zap.c32
1 files changed, 23 insertions, 9 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index c46dce26c..65e7496e6 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -3486,13 +3486,24 @@ static struct ast_frame *zt_handle_event(struct ast_channel *ast)
/* In any case this isn't a threeway call anymore */
p->subs[SUB_REAL].inthreeway = 0;
p->subs[SUB_THREEWAY].inthreeway = 0;
- if ((res = attempt_transfer(p)) < 0)
- p->subs[SUB_THREEWAY].owner->_softhangup |= AST_SOFTHANGUP_DEV;
- else if (res) {
- /* Don't actually hang up at this point */
- if (p->subs[SUB_THREEWAY].owner)
- ast_mutex_unlock(&p->subs[SUB_THREEWAY].owner->lock);
- break;
+ if((p->owner->_state == AST_STATE_RINGING) ||
+ (p->owner->_state == AST_STATE_UP)){
+ /* Only attempt transfer if the phone is ringing; why transfer to busy tone eh? */
+ if ((res = attempt_transfer(p)) < 0)
+ p->subs[SUB_THREEWAY].owner->_softhangup |= AST_SOFTHANGUP_DEV;
+ else if (res) {
+ /* Don't actually hang up at this point */
+ if (p->subs[SUB_THREEWAY].owner)
+ ast_mutex_unlock(&p->subs[SUB_THREEWAY].owner->lock);
+ break;
+ }
+ } else {
+ ast_mutex_unlock(&p->subs[SUB_THREEWAY].owner->lock);
+ /* Swap subs and dis-own channel */
+ swap_subs(p, SUB_THREEWAY, SUB_REAL);
+ p->owner = NULL;
+ /* Ring the phone */
+ zt_ring_phone(p);
}
} else
p->subs[SUB_THREEWAY].owner->_softhangup |= AST_SOFTHANGUP_DEV;
@@ -3803,8 +3814,11 @@ static struct ast_frame *zt_handle_event(struct ast_channel *ast)
p->subs[SUB_THREEWAY].inthreeway = 0;
} else {
/* Lets see what we're up to */
- if ((ast->pbx) ||
- (ast->_state == AST_STATE_UP)) {
+ if (((ast->pbx) || (ast->_state == AST_STATE_UP)) &&
+ /* Only conference if it's ringing or answered */
+ ((p->owner->_state == AST_STATE_RINGING) ||
+ (p->owner->_state == AST_STATE_UP))){
+
int otherindex = SUB_THREEWAY;
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Building conference on call on %s and %s\n", p->subs[SUB_THREEWAY].owner->name, p->subs[SUB_REAL].owner->name);