[svn-commits] file: branch file/bridging r126111 - /team/file/bridging/apps/app_confbridge.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jun 27 17:33:19 CDT 2008


Author: file
Date: Fri Jun 27 17:33:19 2008
New Revision: 126111

URL: http://svn.digium.com/view/asterisk?view=rev&rev=126111
Log:
Add a note about why the conference bridge lock is not held while playing back a file.

Modified:
    team/file/bridging/apps/app_confbridge.c

Modified: team/file/bridging/apps/app_confbridge.c
URL: http://svn.digium.com/view/asterisk/team/file/bridging/apps/app_confbridge.c?view=diff&rev=126111&r1=126110&r2=126111
==============================================================================
--- team/file/bridging/apps/app_confbridge.c (original)
+++ team/file/bridging/apps/app_confbridge.c Fri Jun 27 17:33:19 2008
@@ -48,6 +48,16 @@
 #include "asterisk/say.h"
 #include "asterisk/audiohook.h"
 #include "asterisk/astobj2.h"
+
+/*!
+ * \par Playing back a file to a channel in a conference
+ * You might notice in this application that while playing a sound file
+ * to a channel the actual conference bridge lock is not held. This is done so
+ * that other channels are not blocked from interacting with the conference bridge.
+ * Unfortunately because of this it is possible for things to change after the sound file
+ * is done being played. Data must therefore be checked after reacquiring the conference
+ * bridge lock if it is important.
+ */
 
 static char *app = "ConfBridge";
 static char *synopsis = 




More information about the svn-commits mailing list