[asterisk-commits] russell: branch russell/ast_channel_ao2 r183641 - /team/russell/ast_channel_a...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sat Mar 21 12:49:19 CDT 2009


Author: russell
Date: Sat Mar 21 12:49:15 2009
New Revision: 183641

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=183641
Log:
Simplify part of ast_channel since we're breaking API and ABI in this patch anyway

Modified:
    team/russell/ast_channel_ao2/include/asterisk/channel.h

Modified: team/russell/ast_channel_ao2/include/asterisk/channel.h
URL: http://svn.digium.com/svn-view/asterisk/team/russell/ast_channel_ao2/include/asterisk/channel.h?view=diff&rev=183641&r1=183640&r2=183641
==============================================================================
--- team/russell/ast_channel_ao2/include/asterisk/channel.h (original)
+++ team/russell/ast_channel_ao2/include/asterisk/channel.h Sat Mar 21 12:49:15 2009
@@ -543,12 +543,7 @@
 
 	unsigned short transfercapability;		/*!< ISDN Transfer Capbility - AST_FLAG_DIGITAL is not enough */
 
-	union {
-		char unused_old_dtmfq[AST_MAX_EXTENSION];			/*!< (deprecated, use readq instead) Any/all queued DTMF characters */
-		struct {
-			struct ast_bridge *bridge;                                      /*!< Bridge this channel is participating in */
-		};
-	};
+	struct ast_bridge *bridge;                                      /*!< Bridge this channel is participating in */
 
 	char context[AST_MAX_CONTEXT];			/*!< Dialplan: Current extension context */
 	char exten[AST_MAX_EXTENSION];			/*!< Dialplan: Current extension number */




More information about the asterisk-commits mailing list