[svn-commits] file: branch 1.2 r48154 - /branches/1.2/res/res_features.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Nov 30 12:04:12 MST 2006


Author: file
Date: Thu Nov 30 13:04:11 2006
New Revision: 48154

URL: http://svn.digium.com/view/asterisk?view=rev&rev=48154
Log:
Do not listen for DTMF on the bridge that comes into existence when ParkedCall is executed. This means native bridging can now occur for this. (issue #8406 reported by kebl0155)

Modified:
    branches/1.2/res/res_features.c

Modified: branches/1.2/res/res_features.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/res/res_features.c?view=diff&rev=48154&r1=48153&r2=48154
==============================================================================
--- branches/1.2/res/res_features.c (original)
+++ branches/1.2/res/res_features.c Thu Nov 30 13:04:11 2006
@@ -1774,12 +1774,6 @@
 			ast_verbose(VERBOSE_PREFIX_3 "Channel %s connected to parked call %d\n", chan->name, park);
 
 		memset(&config, 0, sizeof(struct ast_bridge_config));
-		ast_set_flag(&(config.features_callee), AST_FEATURE_REDIRECT);
-		ast_set_flag(&(config.features_caller), AST_FEATURE_REDIRECT);
-		config.timelimit = 0;
-		config.play_warning = 0;
-		config.warning_freq = 0;
-		config.warning_sound=NULL;
 		res = ast_bridge_call(chan, peer, &config);
 
 		/* Simulate the PBX hanging up */



More information about the svn-commits mailing list