[asterisk-commits] jrose: trunk r346699 - in /trunk: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Dec 1 14:46:16 CST 2011
Author: jrose
Date: Thu Dec 1 14:46:12 2011
New Revision: 346699
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=346699
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)
........
Merged revisions 346697 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 346698 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
trunk/ (props changed)
trunk/channels/chan_sip.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_sip.c?view=diff&rev=346699&r1=346698&r2=346699
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Thu Dec 1 14:46:12 2011
@@ -23994,7 +23994,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 asterisk-commits
mailing list