From 1398781ee76ce28029f704258d99fa9ba5601046 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 24 Mar 2005 22:00:23 +0000 Subject: show correct seq no in debug output (bug #3849) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5254 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- rtp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'rtp.c') diff --git a/rtp.c b/rtp.c index 6ca1f916c..a132928d5 100755 --- a/rtp.c +++ b/rtp.c @@ -1271,8 +1271,6 @@ static int ast_rtp_raw_write(struct ast_rtp *rtp, struct ast_frame *f, int codec put_uint32(rtpheader + 4, htonl(rtp->lastts)); put_uint32(rtpheader + 8, htonl(rtp->ssrc)); - rtp->seqno++; - if (rtp->them.sin_port && rtp->them.sin_addr.s_addr) { res = sendto(rtp->s, (void *)rtpheader, f->datalen + hdrlen, 0, (struct sockaddr *)&rtp->them, sizeof(rtp->them)); if (res <0) @@ -1281,6 +1279,9 @@ static int ast_rtp_raw_write(struct ast_rtp *rtp, struct ast_frame *f, int codec ast_verbose("Sent RTP packet to %s:%d (type %d, seq %d, ts %d, len %d)\n" , ast_inet_ntoa(iabuf, sizeof(iabuf), rtp->them.sin_addr), ntohs(rtp->them.sin_port), codec, rtp->seqno, rtp->lastts,res - hdrlen); } + + rtp->seqno++; + return 0; } -- cgit v1.2.3