[asterisk-commits] mmichelson: trunk r219324 - in /trunk: ./ channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Sep 17 17:22:05 CDT 2009


Author: mmichelson
Date: Thu Sep 17 17:22:01 2009
New Revision: 219324

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=219324
Log:
Merged revisions 219320 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r219320 | mmichelson | 2009-09-17 17:20:50 -0500 (Thu, 17 Sep 2009) | 6 lines
  
  Send a 100 Trying response when we detect a spiral.
  
  This was problematic during spiral tests at SIPit...
  along with some other things as well.
........

Modified:
    trunk/   (props changed)
    trunk/channels/chan_sip.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/channels/chan_sip.c
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=219324&r1=219323&r2=219324
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Thu Sep 17 17:22:01 2009
@@ -20208,6 +20208,7 @@
 			char *at = strchr(uri, '@');
 			char *peerorhost;
 			ast_debug(2, "Potential spiral detected. Original RURI was %s, new RURI is %s\n", initial_rlPart2, this_rlPart2);
+			transmit_response(p, "100 Trying", req);
 			if (at) {
 				*at = '\0';
 			}




More information about the asterisk-commits mailing list