mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-10 11:58:08 +00:00
Merged revisions 286115 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ................ r286115 | twilson | 2010-09-10 15:35:25 -0500 (Fri, 10 Sep 2010) | 23 lines Merged revisions 286059 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r286059 | twilson | 2010-09-10 14:25:08 -0500 (Fri, 10 Sep 2010) | 16 lines Inherit CHANNEL() writes to both sides of a Local channel Having Local (/n) channels as queue members and setting the language in the extension with Set(CHANNEL(language)=fr) sets the language on the Local/...,2 channel. Hold time report playbacks happen on the Local/...,1 channel and therefor do not play in the specified language. This patch modifies func_channel_write to call the setoption callback and pass the CHANNEL() write info to the callback. chan_local uses this information to look up the other side of the channel and apply the same changes to it. (closes issue #17673) Reported by: Guggemand Review: https://reviewboard.asterisk.org/r/903/ ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@286189 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -436,6 +436,13 @@ enum ast_control_transfer {
|
||||
/*! Explicitly enable or disable echo cancelation for the given channel */
|
||||
#define AST_OPTION_ECHOCAN 8
|
||||
|
||||
/*! \brief Handle channel write data
|
||||
* If a channel needs to process the data from a func_channel write operation
|
||||
* after func_channel_write executes, it can define the setoption callback
|
||||
* and process this option. A pointer to an ast_chan_write_info_t will be passed.
|
||||
* */
|
||||
#define AST_OPTION_CHANNEL_WRITE 9
|
||||
|
||||
/* !
|
||||
* Read-only. Allows query current status of T38 on the channel.
|
||||
* data: ast_t38state
|
||||
|
||||
Reference in New Issue
Block a user