mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-08 06:12:45 +00:00
Convert AST_FLAG_ANSWERED_ELSEWHERE usage to AST_CAUSE_ANSWERED_ELSEWHERE
This was essentially duplicated functionality where normal channels used AST_CAUSE_ANSWERED_ELSEWHERE while local channels and queues used AST_FLAG_ANSWERED_ELSEWHERE. This removes the flag and converts that usage into AST_CAUSE_ANSWERED_ELSEWHER usage. Review: https://reviewboard.asterisk.org/r/1944 (closes issue ASTERISK-19865) Patch-by: Birger Harzenetter git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@368519 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -835,9 +835,10 @@ enum {
|
||||
/*! This is set to tell the channel not to generate DTMF begin frames, and
|
||||
* to instead only generate END frames. */
|
||||
AST_FLAG_END_DTMF_ONLY = (1 << 14),
|
||||
/*! Flag to show channels that this call is hangup due to the fact that the call
|
||||
/* OBSOLETED in favor of AST_CAUSE_ANSWERED_ELSEWHERE
|
||||
Flag to show channels that this call is hangup due to the fact that the call
|
||||
was indeed answered, but in another channel */
|
||||
AST_FLAG_ANSWERED_ELSEWHERE = (1 << 15),
|
||||
/* AST_FLAG_ANSWERED_ELSEWHERE = (1 << 15), */
|
||||
/*! This flag indicates that on a masquerade, an active stream should not
|
||||
* be carried over */
|
||||
AST_FLAG_MASQ_NOSTREAM = (1 << 16),
|
||||
|
Reference in New Issue
Block a user