What need to use, in asterisk 13.x, instead "ast_bridged_channel()" from (asterisk 1.4.2)?

The function ‘ast_bridged_channel()’ (asterisk 1.4.2) is deprecated and has been removed from asterisk 13.x.
Question:
What need to use, in asterisk 13.x, instead “ast_bridged_channel()” from (asterisk 1.4.2)?

This is an end user forum. There are IRC channels and mailing lists for developer questions.

As I recall it ast_bridged_channel() is a bit more subtle than it name suggests, but the whole channel API has changed from shared variables to methods, and may have changed again, since that.

1 Like

Yes, the entire bridging system was changed so the API was also changed. The equivalent would be ast_channel_bridge_peer, which only returns a channel if the bridge contains 2 parties (a bridge can contain more than 2 channels now).

1 Like

Many thanks! You are absolutely right!