[asterisk-commits] jrose: branch 11 r371845 - in /branches/11: ./	channels/chan_sip.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Wed Aug 29 12:25:23 CDT 2012
    
    
  
Author: jrose
Date: Wed Aug 29 12:25:19 2012
New Revision: 371845
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=371845
Log:
chan_sip: Send 408 on retransmit timeout instead of 603
(closes issue ASTERISK-20124)
Reported by: Walter Doekes
........
Merged revisions 371824 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 371825 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
    branches/11/   (props changed)
    branches/11/channels/chan_sip.c
Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: branches/11/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/channels/chan_sip.c?view=diff&rev=371845&r1=371844&r2=371845
==============================================================================
--- branches/11/channels/chan_sip.c (original)
+++ branches/11/channels/chan_sip.c Wed Aug 29 12:25:19 2012
@@ -3928,7 +3928,7 @@
 				/* there is nothing left to do, mark the dialog as gone */
 				sip_alreadygone(pkt->owner);
 			}
-			ast_queue_hangup_with_cause(pkt->owner->owner, AST_CAUSE_PROTOCOL_ERROR);
+			ast_queue_hangup_with_cause(pkt->owner->owner, AST_CAUSE_NO_USER_RESPONSE);
 			ast_channel_unlock(pkt->owner->owner);
 		} else {
 			/* If no channel owner, destroy now */
    
    
More information about the asterisk-commits
mailing list