[svn-commits] file: trunk r89057 - /trunk/main/channel.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Nov 6 14:55:58 CST 2007


Author: file
Date: Tue Nov  6 14:55:58 2007
New Revision: 89057

URL: http://svn.digium.com/view/asterisk?view=rev&rev=89057
Log:
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

Modified:
    trunk/main/channel.c

Modified: trunk/main/channel.c
URL: http://svn.digium.com/view/asterisk/trunk/main/channel.c?view=diff&rev=89057&r1=89056&r2=89057
==============================================================================
--- trunk/main/channel.c (original)
+++ trunk/main/channel.c Tue Nov  6 14:55:58 2007
@@ -4196,8 +4196,6 @@
 		    (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);




More information about the svn-commits mailing list