aboutsummaryrefslogtreecommitdiffstats
path: root/main/channel.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-18 22:26:18 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-18 22:26:18 +0000
commit582a21b8e3f75fa009294f1ad3f2f8123cc7afcf (patch)
tree2d0d56fa4009f7d35b6ee454ed1deaf7a34bb7e1 /main/channel.c
parentd21bf963e8278010b0857f275552a5418d42a3e6 (diff)
Merged revisions 183057 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r183057 | file | 2009-03-18 19:22:56 -0300 (Wed, 18 Mar 2009) | 6 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.0@183066 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/channel.c b/main/channel.c
index e06ec071b..127f97a0c 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -4500,6 +4500,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, f->datalen);
if (jb_in_use) {
ast_jb_empty_and_reset(c0, c1);