[asterisk-commits] file: branch 1.2 r51145 -
/branches/1.2/res/res_features.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue Jan 16 10:36:51 MST 2007
Author: file
Date: Tue Jan 16 11:36:50 2007
New Revision: 51145
URL: http://svn.digium.com/view/asterisk?view=rev&rev=51145
Log:
Return previous behavior. ParkedCalls will be able to do DTMF based transfers again. trunk however will get an option to allow this to be set on/off. (issue #8804 reported by nortex)
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=51145&r1=51144&r2=51145
==============================================================================
--- branches/1.2/res/res_features.c (original)
+++ branches/1.2/res/res_features.c Tue Jan 16 11:36:50 2007
@@ -1774,6 +1774,8 @@
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);
res = ast_bridge_call(chan, peer, &config);
/* Simulate the PBX hanging up */
More information about the asterisk-commits
mailing list