aboutsummaryrefslogtreecommitdiffstats
path: root/rtp.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-19 05:24:45 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-19 05:24:45 +0000
commit675d834dc930bef980382075d5faefd7adb93198 (patch)
treede05cb6301d045de5e7ba3152a20087b4cd4259e /rtp.c
parent5ac18d709288301a79d9d4af4bbe169df281b9f7 (diff)
Increment seqno in RTP in RFC2833 (bug #2902)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4293 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'rtp.c')
-rwxr-xr-xrtp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/rtp.c b/rtp.c
index b33be20d8..8dc7a2fef 100755
--- a/rtp.c
+++ b/rtp.c
@@ -1073,6 +1073,8 @@ int ast_rtp_senddigit(struct ast_rtp *rtp, char digit)
rtpheader[3] |= htonl((800));
/* Set the End bit for the last 3 */
rtpheader[3] |= htonl((1 << 23));
+ } else if ( x < 3) {
+ rtpheader[0] = htonl((2 << 30) | (payload << 16) | (rtp->seqno++));
}
}
return 0;