[asterisk-commits] file: branch file/bridging r177980 - /team/file/bridging/include/asterisk/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sat Feb 21 20:00:50 CST 2009


Author: file
Date: Sat Feb 21 20:00:50 2009
New Revision: 177980

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=177980
Log:
We don't need to pass in a bridge when we just check to see if a channel is compatible with a bridging technology.

Modified:
    team/file/bridging/include/asterisk/bridging_technology.h

Modified: team/file/bridging/include/asterisk/bridging_technology.h
URL: http://svn.digium.com/svn-view/asterisk/team/file/bridging/include/asterisk/bridging_technology.h?view=diff&rev=177980&r1=177979&r2=177980
==============================================================================
--- team/file/bridging/include/asterisk/bridging_technology.h (original)
+++ team/file/bridging/include/asterisk/bridging_technology.h Sat Feb 21 20:00:50 2009
@@ -61,7 +61,7 @@
 	/*! Callback for when a channel is unsuspended from the bridge */
 	void (*unsuspend)(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel);
 	/*! Callback to see if a channel is compatible with the bridging technology */
-	int (*compatible)(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel);
+	int (*compatible)(struct ast_bridge_channel *bridge_channel);
 	/*! Callback for writing a frame into the bridging technology */
 	enum ast_bridge_write_result (*write)(struct ast_bridge *bridge, struct ast_bridge_channel *bridged_channel, struct ast_frame *frame);
 	/*! Callback for when a file descriptor trips */




More information about the asterisk-commits mailing list