summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-08-15 14:42:49 +0000
committerJoshua Colp <jcolp@digium.com>2007-08-15 14:42:49 +0000
commit5fbd7ebd248cff5905e26bb11a4a713c1287864d (patch)
tree9780478be26739ca91989c0991d387c60f39c354
parent425aca97c48d42fc9a20588d39373f457e77848b (diff)
Merged revisions 79553 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r79553 | file | 2007-08-15 11:40:23 -0300 (Wed, 15 Aug 2007) | 6 lines (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. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79558 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rtp.c b/main/rtp.c
index 465755afe..7f81ed7cf 100644
--- a/main/rtp.c
+++ b/main/rtp.c
@@ -59,7 +59,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#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 */