aboutsummaryrefslogtreecommitdiffstats
path: root/main/channel.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-06 20:55:58 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-06 20:55:58 +0000
commitcddff61a41fcb2e129564fd27e5ee0d804a4990f (patch)
treee26924b45ae30681f19e591d72057a5314f51621 /main/channel.c
parent744d53695495d9f5e984d14633db52ece7172c98 (diff)
Remove native bridging check for DTMF based transfers. Thanks to the last batch of RTP changes it is no longer required for the media stream to go through Asterisk if DTMF is going over signalling. It will simply reinvite back as needed.
(closes issue #11172) Reported by: ibc git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89057 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/main/channel.c b/main/channel.c
index 7f83622cd..b2f993d25 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -4196,8 +4196,6 @@ enum ast_bridge_result ast_channel_bridge(struct ast_channel *c0, struct ast_cha
(c0->tech->bridge == c1->tech->bridge) &&
!nativefailed && !c0->monitor && !c1->monitor &&
!c0->audiohooks && !c1->audiohooks &&
- !ast_test_flag(&(config->features_callee),AST_FEATURE_REDIRECT) &&
- !ast_test_flag(&(config->features_caller),AST_FEATURE_REDIRECT) &&
!c0->masq && !c0->masqr && !c1->masq && !c1->masqr) {
/* Looks like they share a bridge method and nothing else is in the way */
ast_set_flag(c0, AST_FLAG_NBRIDGE);