summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2009-03-18 22:22:56 +0000
committerJoshua Colp <jcolp@digium.com>2009-03-18 22:22:56 +0000
commit10b7b842dc8b2850be208294818c6fa1acb0608a (patch)
treeb72d8b25cd06c07868ea9d06c804c29fa2b61bbd
parent5a30ea385f32bde06f3cae8fdb3d5accde93a17a (diff)
Fix an issue where a T38 control frame would get dropped.
If two channels were bridged together using a generic bridge the T38 control frame would get passed up instead of being indicated on the other channel. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@183057 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/channel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/channel.c b/main/channel.c
index 475e10ae8..719e9f669 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -4522,6 +4522,7 @@ static enum ast_bridge_result ast_generic_bridge(struct ast_channel *c0, struct
case AST_CONTROL_UNHOLD:
case AST_CONTROL_VIDUPDATE:
case AST_CONTROL_SRCUPDATE:
+ case AST_CONTROL_T38:
ast_indicate_data(other, f->subclass, f->data.ptr, f->datalen);
if (jb_in_use) {
ast_jb_empty_and_reset(c0, c1);