[asterisk-commits] file: branch file/bridging r79138 - /team/file/bridging/include/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Aug 10 17:53:06 CDT 2007
Author: file
Date: Fri Aug 10 17:53:05 2007
New Revision: 79138
URL: http://svn.digium.com/view/asterisk?view=rev&rev=79138
Log:
Change from a capability to a bridge feature flag for moving between bridge technologies as needed.
Modified:
team/file/bridging/include/asterisk/bridging.h
Modified: team/file/bridging/include/asterisk/bridging.h
URL: http://svn.digium.com/view/asterisk/team/file/bridging/include/asterisk/bridging.h?view=diff&rev=79138&r1=79137&r2=79138
==============================================================================
--- team/file/bridging/include/asterisk/bridging.h (original)
+++ team/file/bridging/include/asterisk/bridging.h Fri Aug 10 17:53:05 2007
@@ -29,7 +29,6 @@
/*! \brief Capabilities for a bridge technology */
enum ast_bridge_capability {
- AST_BRIDGE_CAPABILITY_TRANSMIX = (1 << 0), /*! Move between bridge technologies as sources change to ensure the "best" use of technologies */
AST_BRIDGE_CAPABILITY_1TO1MIX = (1 << 1), /*! Bridge is only capable of mixing 2 sources */
AST_BRIDGE_CAPABILITY_MULTIMIX = (1 << 2), /*! Bridge is capable of mixing 2+ sources */
AST_BRIDGE_CAPABILITY_NATIVE = (1 << 3), /*! Bridge can natively bridge two channels */
@@ -60,6 +59,7 @@
/*! \brief Flags used for bridge features */
enum ast_bridge_feature_flags {
AST_BRIDGE_FLAG_DISSOLVE = (1 << 0), /*! Upon hangup of any channel dissolve the bridge */
+ AST_BRIDGE_FLAG_SMART = (1 << 1), /*! Move between bridge technologies as needed */
};
struct ast_bridge;
More information about the asterisk-commits
mailing list