[asterisk-commits] file: trunk r183057 - /trunk/main/channel.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Mar 18 17:23:03 CDT 2009
Author: file
Date: Wed Mar 18 17:22:56 2009
New Revision: 183057
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=183057
Log:
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.
Modified:
trunk/main/channel.c
Modified: trunk/main/channel.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/main/channel.c?view=diff&rev=183057&r1=183056&r2=183057
==============================================================================
--- trunk/main/channel.c (original)
+++ trunk/main/channel.c Wed Mar 18 17:22:56 2009
@@ -4522,6 +4522,7 @@
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);
More information about the asterisk-commits
mailing list