[svn-commits] rmudgett: trunk r393184 - /trunk/include/asterisk/bridging_features.h

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jun 28 14:05:55 CDT 2013


Author: rmudgett
Date: Fri Jun 28 14:05:52 2013
New Revision: 393184

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=393184
Log:
Fix overlapping enum ast_bridge_feature_flags.

Things may no longer behave in an unexpected fashion.  Local channel
optimization to holding bridges will work again.

Modified:
    trunk/include/asterisk/bridging_features.h

Modified: trunk/include/asterisk/bridging_features.h
URL: http://svnview.digium.com/svn/asterisk/trunk/include/asterisk/bridging_features.h?view=diff&rev=393184&r1=393183&r2=393184
==============================================================================
--- trunk/include/asterisk/bridging_features.h (original)
+++ trunk/include/asterisk/bridging_features.h Fri Jun 28 14:05:52 2013
@@ -47,9 +47,9 @@
 	/*! Bridge channels can be moved to another bridge only by masquerade (ConfBridge) */
 	AST_BRIDGE_FLAG_MASQUERADE_ONLY = (1 << 7),
 	/*! Bridge does not allow transfers of channels out */
-	AST_BRIDGE_FLAG_TRANSFER_PROHIBITED = (1 << 6),
+	AST_BRIDGE_FLAG_TRANSFER_PROHIBITED = (1 << 8),
 	/*! Bridge transfers require transfer of entire bridge rather than individual channels */
-	AST_BRIDGE_FLAG_TRANSFER_BRIDGE_ONLY = (1 << 7),
+	AST_BRIDGE_FLAG_TRANSFER_BRIDGE_ONLY = (1 << 9),
 };
 
 /*! \brief Flags used for per bridge channel features */




More information about the svn-commits mailing list