aboutsummaryrefslogtreecommitdiffstats
path: root/main/rtp.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-15 14:40:23 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-15 14:40:23 +0000
commitab1ee9aa063a71d0b60a32dfa996fd84ed378872 (patch)
tree888fb07798059dac7443f785c3c9b3aead40ee3c /main/rtp.c
parentc36942ed43456c936f5fb939ea6a64e87c299fe3 (diff)
(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: http://svn.digium.com/svn/asterisk/branches/1.4@79553 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/rtp.c')
-rw-r--r--main/rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rtp.c b/main/rtp.c
index 4520e574a..e47453278 100644
--- a/main/rtp.c
+++ b/main/rtp.c
@@ -57,7 +57,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 */