[asterisk-commits] file: branch 1.4 r79553 - /branches/1.4/main/rtp.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Aug 15 09:40:24 CDT 2007


Author: file
Date: Wed Aug 15 09:40:23 2007
New Revision: 79553

URL: http://svn.digium.com/view/asterisk?view=rev&rev=79553
Log:
(closes issue #10440)
Reported by: irroot
(closes issue #10454)
Reported by: flo_turc
Increase maximum timestamp skew to 120. 20 was apparently far too low.

Modified:
    branches/1.4/main/rtp.c

Modified: branches/1.4/main/rtp.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/rtp.c?view=diff&rev=79553&r1=79552&r2=79553
==============================================================================
--- branches/1.4/main/rtp.c (original)
+++ branches/1.4/main/rtp.c Wed Aug 15 09:40:23 2007
@@ -57,7 +57,7 @@
 #include "asterisk/unaligned.h"
 #include "asterisk/utils.h"
 
-#define MAX_TIMESTAMP_SKEW	20
+#define MAX_TIMESTAMP_SKEW	120
 
 #define RTP_SEQ_MOD     (1<<16) 	/*!< A sequence number can't be more than 16 bits */
 #define RTCP_DEFAULT_INTERVALMS   5000	/*!< Default milli-seconds between RTCP reports we send */




More information about the asterisk-commits mailing list