From: Mark Spencer Date: Sun, 10 Oct 2004 17:32:55 +0000 (+0000) Subject: Increase max packet size to 4096 X-Git-Tag: 1.2.0-beta1~2040 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=760dbbed48ee14cf9390906ac09401a7dd513ab8;p=thirdparty%2Fasterisk.git Increase max packet size to 4096 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3973 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 0994b04ba0..ccde563b1a 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -113,7 +113,7 @@ static char *tdesc = "Session Initiation Protocol (SIP)"; static char *config = "sip.conf"; #define DEFAULT_SIP_PORT 5060 /* From RFC 2543 */ -#define SIP_MAX_PACKET 1500 /* Also from RFC 2543, should sub headers tho */ +#define SIP_MAX_PACKET 4096 /* Also from RFC 2543, should sub headers tho */ #define ALLOWED_METHODS "INVITE, ACK, CANCEL, OPTIONS, BYE, REFER"