[asterisk-commits] irroot: branch irroot/t38gateway-1.8 r326051 - /team/irroot/t38gateway-1.8/res/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jul 1 10:38:31 CDT 2011


Author: irroot
Date: Fri Jul  1 10:38:27 2011
New Revision: 326051

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=326051
Log:
Change to bring inline with trunk / add missing check for rejected T.38

Modified:
    team/irroot/t38gateway-1.8/res/res_fax.c

Modified: team/irroot/t38gateway-1.8/res/res_fax.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/t38gateway-1.8/res/res_fax.c?view=diff&rev=326051&r1=326050&r2=326051
==============================================================================
--- team/irroot/t38gateway-1.8/res/res_fax.c (original)
+++ team/irroot/t38gateway-1.8/res/res_fax.c Fri Jul  1 10:38:27 2011
@@ -46,7 +46,7 @@
  * \author Kevin P. Fleming <kpfleming at digium.com>
  * \author Matthew Nicholson <mnicholson at digium.com>
  * \author Gregory H. Nietsky  <gregory at distrotech.co.za>
- *
+ * 
  * A generic FAX resource module that provides SendFAX and ReceiveFAX applications.
  * This module requires FAX technology modules, like res_fax_spandsp, to register with it
  * so it can use the technology modules to perform the actual FAX transmissions.
@@ -1167,6 +1167,7 @@
 	case T38_STATE_UNKNOWN:
 		details->caps |= AST_FAX_TECH_T38;
 		break;
+	case T38_STATE_REJECTED:
 	case T38_STATE_UNAVAILABLE:
 		details->caps |= AST_FAX_TECH_AUDIO;
 		break;




More information about the asterisk-commits mailing list