[svn-commits] file: trunk r184280 - /trunk/channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Mar 25 14:22:07 CDT 2009


Author: file
Date: Wed Mar 25 14:22:06 2009
New Revision: 184280

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=184280
Log:
Fix issue with a T38 reinvite being sent even if not configured to do so.

If we receive a T38 request negotiate control frame we should only attempt to do so
if the option is enabled on the dialog.

Modified:
    trunk/channels/chan_sip.c

Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=184280&r1=184279&r2=184280
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Wed Mar 25 14:22:06 2009
@@ -6086,7 +6086,7 @@
 					AST_SCHED_DEL_UNREF(sched, p->t38id, dialog_unref(p, "when you delete the t38id sched, you should dec the refcount for the stored dialog ptr"));
 					change_t38_state(p, T38_ENABLED);
 					transmit_response_with_t38_sdp(p, "200 OK", &p->initreq, XMIT_CRITICAL);
-				} else if (p->t38.state != T38_ENABLED) {
+				} else if (ast_test_flag(&p->t38.t38support, SIP_PAGE2_T38SUPPORT) && p->t38.state != T38_ENABLED) {
 					change_t38_state(p, T38_LOCAL_REINVITE);
 					if (!p->pendinginvite) {
 						transmit_reinvite_with_sdp(p, TRUE, FALSE);




More information about the svn-commits mailing list