mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-06 05:02:29 +00:00
Perform the initial renaming of the Bridging API
This patch does the following: * It pulls out bridge_channel and puts it into its own translation unit * It adds public and protected headers for bridging_channel. Protected functions are appropriate only for the Bridging API and sub-classes of a bridge. (issue ASTERISK-22130) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@395253 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4385,4 +4385,16 @@ int ast_channel_suppress(struct ast_channel *chan, unsigned int direction, enum
|
||||
*/
|
||||
int ast_channel_unsuppress(struct ast_channel *chan, unsigned int direction, enum ast_frame_type frametype);
|
||||
|
||||
/*!
|
||||
* \brief Simulate a DTMF end on a broken bridge channel.
|
||||
*
|
||||
* \param chan Channel sending DTMF that has not ended.
|
||||
* \param digit DTMF digit to stop.
|
||||
* \param start DTMF digit start time.
|
||||
* \param why Reason bridge broken.
|
||||
*
|
||||
* \return Nothing
|
||||
*/
|
||||
void ast_channel_end_dtmf(struct ast_channel *chan, char digit, struct timeval start, const char *why);
|
||||
|
||||
#endif /* _ASTERISK_CHANNEL_H */
|
||||
|
Reference in New Issue
Block a user