summaryrefslogtreecommitdiff
path: root/channels/sip
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-05-06 15:39:10 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-05-06 15:39:10 +0000
commitba9b0d95e62dd6698809d7510df379ee8a571420 (patch)
treebe475620564e3a19f7dfb7006a73953380092865 /channels/sip
parentbe77c44d45cb9b7599bbe816361e482c984c222f (diff)
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 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@261560 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/sip')
-rw-r--r--channels/sip/include/sip.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/sip/include/sip.h b/channels/sip/include/sip.h
index ddc4bb9c1..2ee19b6d7 100644
--- a/channels/sip/include/sip.h
+++ b/channels/sip/include/sip.h
@@ -93,7 +93,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_MIN_PACKET 4096 /*!< Initialize size of memory to allocate for packets */
#define MAX_HISTORY_ENTRIES 50 /*!< Max entires in the history list for a sip_pvt */