[svn-commits] jrose: branch 1.8 r346697 - /branches/1.8/channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Dec 1 14:36:38 CST 2011


Author: jrose
Date: Thu Dec  1 14:36:34 2011
New Revision: 346697

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=346697
Log:
Change 183 Ringing in sipfrag body to 180 ringing. 183 Ringing isn't even a thing.

183 is actually a session progress message.

(closes issue ASTERISK-18925)
Reported by: Sebastian Denz
Tested by: jrose
Patches:
	asterisk18-use_180_instead_of_183_in_sipfrag.diff by Sebastian Denz (License #6139)

Modified:
    branches/1.8/channels/chan_sip.c

Modified: branches/1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_sip.c?view=diff&rev=346697&r1=346696&r2=346697
==============================================================================
--- branches/1.8/channels/chan_sip.c (original)
+++ branches/1.8/channels/chan_sip.c Thu Dec  1 14:36:34 2011
@@ -23369,7 +23369,7 @@
 
 	/* FAKE ringing if not attended transfer */
 	if (!p->refer->attendedtransfer) {
-		transmit_notify_with_sipfrag(p, seqno, "183 Ringing", FALSE);
+		transmit_notify_with_sipfrag(p, seqno, "180 Ringing", FALSE);
 	}
 
 	/* For blind transfer, this will lead to a new call */




More information about the svn-commits mailing list