[asterisk-commits] murf: branch murf/masqpark r156445 - /team/murf/masqpark/res/res_features.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Nov 12 17:19:25 CST 2008


Author: murf
Date: Wed Nov 12 17:19:25 2008
New Revision: 156445

URL: http://svn.digium.com/view/asterisk?view=rev&rev=156445
Log:
report the results of an experiment in the code

Modified:
    team/murf/masqpark/res/res_features.c

Modified: team/murf/masqpark/res/res_features.c
URL: http://svn.digium.com/view/asterisk/team/murf/masqpark/res/res_features.c?view=diff&rev=156445&r1=156444&r2=156445
==============================================================================
--- team/murf/masqpark/res/res_features.c (original)
+++ team/murf/masqpark/res/res_features.c Wed Nov 12 17:19:25 2008
@@ -2060,7 +2060,11 @@
 		res = ast_safe_sleep(chan, 1000);
 	/* Park the call */
 	if (!res) {
-		res = park_call_full(chan, chan, 0, NULL, orig_chan_name);  /* any advantage in using masq_park_call() instead? */
+		res = park_call_full(chan, chan, 0, NULL, orig_chan_name);  /* In experiments, using the masq_park_call
+																	   func here yielded no difference with 
+																	   current implementation. I saw no advantage
+																	   in calling it instead.
+																	 */
 		/* Continue on in the dialplan */
 		if (res == 1) {
 			ast_copy_string(chan->exten, orig_exten, sizeof(chan->exten));




More information about the asterisk-commits mailing list