[asterisk-commits] tilghman: branch 1.6.0 r261561 - in /branches/1.6.0: ./ channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu May 6 10:42:51 CDT 2010


Author: tilghman
Date: Thu May  6 10:42:47 2010
New Revision: 261561

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=261561
Log:
Merged revisions 261560 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r261560 | tilghman | 2010-05-06 10:39:10 -0500 (Thu, 06 May 2010) | 8 lines
  
  Permit more lines within a SIP body to be parsed.
  
  The example given within the related issue showed 120 lines, which was mostly
  a result of the body being XML.
  
  (closes issue #17179)
   Reported by: khw
........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/channels/chan_sip.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/channels/chan_sip.c?view=diff&rev=261561&r1=261560&r2=261561
==============================================================================
--- branches/1.6.0/channels/chan_sip.c (original)
+++ branches/1.6.0/channels/chan_sip.c Thu May  6 10:42:47 2010
@@ -236,7 +236,7 @@
 #define MAX_AUTHTRIES                3                /*!< Try authentication three times, then fail */
 
 #define SIP_MAX_HEADERS              64               /*!< Max amount of SIP headers to read */
-#define SIP_MAX_LINES                64               /*!< Max amount of lines in SIP attachment (like SDP) */
+#define SIP_MAX_LINES                256              /*!< Max amount of lines in SIP attachment (like SDP) */
 #define SIP_MAX_PACKET               4096             /*!< Also from RFC 3261 (2543), should sub headers tho */
 
 #define INITIAL_CSEQ                 101              /*!< our initial sip sequence number */




More information about the asterisk-commits mailing list