https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r69794 | file | 2007-06-18 15:00:50 -0400 (Mon, 18 Jun 2007) | 2 lines
Don't count RTP timeout when involved in a T38 fax session. (issue #9222 reported by ivoc)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@69795
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
if (dialog->owner->_state != AST_STATE_UP || dialog->redirip.sin_addr.s_addr)
return;
+ /* If the call is involved in a T38 fax session do not check RTP timeout */
+ if (dialog->t38.state == T38_ENABLED)
+ return;
+
/* If we have no timers set, return now */
if (ast_rtp_get_rtpkeepalive(dialog->rtp) == 0 || (ast_rtp_get_rtptimeout(dialog->rtp) == 0 && ast_rtp_get_rtpholdtimeout(dialog->rtp) == 0))
return;