aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-15 19:05:45 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-15 19:05:45 +0000
commit63da5e1423c374d94b367455ac1da0ed48400230 (patch)
tree0acb8f2b54e1d18e5ffc6a43f71a9b4a0039a1a8
parent36bf8325b8f5385b48622228a335b44dce5eab3c (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@13130 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--rtp.c57
1 files changed, 21 insertions, 36 deletions
diff --git a/rtp.c b/rtp.c
index 75add3bbf..2df27e287 100644
--- a/rtp.c
+++ b/rtp.c
@@ -1129,7 +1129,6 @@ int ast_rtp_senddigit(struct ast_rtp *rtp, char digit)
int hdrlen = 12;
int res;
int x;
- unsigned short duration = 0;
int payload;
char data[256];
char iabuf[INET_ADDRSTRLEN];
@@ -1162,8 +1161,7 @@ int ast_rtp_senddigit(struct ast_rtp *rtp, char digit)
rtpheader[1] = htonl(rtp->lastdigitts);
rtpheader[2] = htonl(rtp->ssrc);
rtpheader[3] = htonl((digit << 24) | (0xa << 16) | (0));
-
- for (x = 0; x < 5; x++) {
+ for (x = 0; x < 6; x++) {
if (rtp->them.sin_port && rtp->them.sin_addr.s_addr) {
res = sendto(rtp->s, (void *) rtpheader, hdrlen + 4, 0, (struct sockaddr *) &rtp->them, sizeof(rtp->them));
if (res < 0)
@@ -1175,48 +1173,35 @@ int ast_rtp_senddigit(struct ast_rtp *rtp, char digit)
ast_inet_ntoa(iabuf, sizeof(iabuf), rtp->them.sin_addr),
ntohs(rtp->them.sin_port), payload, rtp->seqno, rtp->lastdigitts, res - hdrlen);
}
-
- /* Sequence number must be incremented for every packet */
- rtp->seqno++;
+ /* Sequence number of last two end packets does not get incremented */
+ if (x < 3)
+ rtp->seqno++;
/* Clear marker bit and set seqno */
rtpheader[0] = htonl((2 << 30) | (payload << 16) | (rtp->seqno));
- /* Increment duration for 160 (20ms) */
- duration += 160;
- rtpheader[3] = htonl((digit << 24) | (0xa << 16) | (duration));
- }
-
- /* Set the End bit */
- rtpheader[3] |= htonl((1 << 23));
-
- /* Send last packet and repeat it 2 times */
- for (x = 0; x < 3; x++) {
- if (rtp->them.sin_port && rtp->them.sin_addr.s_addr) {
- res = sendto(rtp->s, (void *) rtpheader, hdrlen + 4, 0, (struct sockaddr *) &rtp->them, sizeof(rtp->them));
- if (res < 0) {
- ast_log(LOG_ERROR, "RTP Transmission error to %s:%d: %s\n",
- ast_inet_ntoa(iabuf, sizeof(iabuf), rtp->them.sin_addr),
- ntohs(rtp->them.sin_port), strerror(errno));
- }
- if (rtp_debug_test_addr(&rtp->them)) {
- ast_verbose("Sent RTP packet to %s:%d (type %d, seq %u, ts %u, len %u)\n",
- ast_inet_ntoa(iabuf, sizeof(iabuf), rtp->them.sin_addr),
- ntohs(rtp->them.sin_port), payload, rtp->seqno, rtp->lastdigitts, res - hdrlen);
- }
+ /* For the last three packets, set the duration and the end bit */
+ if (x == 2) {
+#if 0
+ /* No, this is wrong... Do not increment lastdigitts, that's not according
+ to the RFC, as best we can determine */
+ rtp->lastdigitts++; /* or else the SPA3000 will click instead of beeping... */
+ rtpheader[1] = htonl(rtp->lastdigitts);
+#endif
+ /* Make duration 800 (100ms) */
+ rtpheader[3] |= htonl((800));
+ /* Set the End bit */
+ rtpheader[3] |= htonl((1 << 23));
}
-
- /* Sequence number must be incremented for every packet, even for retransmitted last two packets */
- rtp->seqno++;
- /* Set seqno */
- rtpheader[0] = htonl((2 << 30) | (payload << 16) | (rtp->seqno));
}
-
/* Increment the digit timestamp by 120ms, to ensure that digits
sent sequentially with no intervening non-digit packets do not
get sent with the same timestamp, and that sequential digits
have some 'dead air' in between them
*/
- duration += 160;
- rtp->lastdigitts += duration;
+ rtp->lastdigitts += 960;
+ /* Increment the sequence number to reflect the last packet
+ that was sent
+ */
+ rtp->seqno++;
return 0;
}