summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-08-15 14:20:59 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-08-15 14:20:59 +0000
commit5f40a6625dcd128092d18533b6d4586d11aadccb (patch)
tree9a72f886be80fdaaa95b0e2229b927af93b5aec6 /include/asterisk
parent82ba10bb47dafd14fbce5c75a8e0b50286c36736 (diff)
Fix Bridge API DTMF hook matching for begin and end DTMF events.
The Bridge API DTMF hook matching would not deal with DTMF end events only. It required a DTMF begin event to start matching the DTMF hooks. There are many places in Asterisk where code only generates DTMF end events without the corresponding begin event. One such place is the AMI action Atxfer. * Fixed DTMF hook matching if there is a string of DTMF frames in the read queue. We could potentially miss some of them before. * Fixed AMI Atxfer action documentation. (closes issue ASTERISK-22037) Reported by: Matt Jordan Review: https://reviewboard.asterisk.org/r/2752/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396732 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/bridge_channel_internal.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/asterisk/bridge_channel_internal.h b/include/asterisk/bridge_channel_internal.h
index 75fb007f7..8cfbb7a7c 100644
--- a/include/asterisk/bridge_channel_internal.h
+++ b/include/asterisk/bridge_channel_internal.h
@@ -39,8 +39,6 @@
* \brief Actions that can be taken on a channel in a bridge
*/
enum bridge_channel_action_type {
- /*! Bridged channel is to detect a feature hook */
- BRIDGE_CHANNEL_ACTION_FEATURE,
/*! Bridged channel is to send a DTMF stream out */
BRIDGE_CHANNEL_ACTION_DTMF_STREAM,
/*! Bridged channel is to indicate talking start */