[svn-commits] jrose: branch certified-1.8.15 r371948 - in /certified/branches/1.8.15: ./ apps/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Aug 29 16:29:57 CDT 2012


Author: jrose
Date: Wed Aug 29 16:29:53 2012
New Revision: 371948

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=371948
Log:
app_meetme: Adding test events for following activity in MeetMe.
........

Merged revisions 371919 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........


Modified:
    certified/branches/1.8.15/   (props changed)
    certified/branches/1.8.15/apps/app_meetme.c

Propchange: certified/branches/1.8.15/
------------------------------------------------------------------------------
    svn:mergeinfo = /branches/1.8:371919

Modified: certified/branches/1.8.15/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/certified/branches/1.8.15/apps/app_meetme.c?view=diff&rev=371948&r1=371947&r2=371948
==============================================================================
--- certified/branches/1.8.15/apps/app_meetme.c (original)
+++ certified/branches/1.8.15/apps/app_meetme.c Wed Aug 29 16:29:53 2012
@@ -1113,6 +1113,13 @@
 	int len;
 	int res = -1;
 
+	ast_test_suite_event_notify("CONFPLAY", "Channel: %s\r\n"
+									"Conference: %s\r\n"
+									"Marked: %d",
+									chan->name,
+									conf->confno,
+									conf->markedusers);
+
 	if (!ast_check_hangup(chan))
 		res = ast_autoservice_start(chan);
 
@@ -4305,6 +4312,7 @@
 
 			/* Not found? */
 			if (ast_strlen_zero(confno)) {
+				ast_test_suite_event_notify("PLAYBACK", "Message: conf-noempty");
 				res = ast_streamfile(chan, "conf-noempty", chan->language);
 				if (!res)
 					ast_waitstream(chan, "");
@@ -4386,6 +4394,9 @@
 							res = 0;
 						} else {
 							/* Prompt user for pin if pin is required */
+							ast_test_suite_event_notify("PLAYBACK", "Message: conf-getpin\r\n"
+								"Channel: %s",
+								chan->name);
 							res = ast_app_getdata(chan, "conf-getpin", pin + strlen(pin), sizeof(pin) - 1 - strlen(pin), 0);
 						}
 						if (res >= 0) {




More information about the svn-commits mailing list