Skip to content
Snippets Groups Projects
Commit 3aa6e93d authored by Richard Mudgett's avatar Richard Mudgett
Browse files

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.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@393184 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 6d624eb0
No related branches found
No related tags found
No related merge requests found
......@@ -47,9 +47,9 @@ enum ast_bridge_feature_flags {
/*! 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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment