From 8b7e1054fe5b27b1d927829032a39bc6cb16b144 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Fri, 12 Aug 2005 18:59:43 +0000 Subject: [PATCH] Fix accidental RTCP/RTP linkage git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6325 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- rtp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rtp.c b/rtp.c index 642a821ad3..71a24360f7 100755 --- a/rtp.c +++ b/rtp.c @@ -353,8 +353,7 @@ struct ast_frame *ast_rtcp_read(struct ast_rtp *rtp) /* Send to whoever sent to us */ if ((rtp->rtcp->them.sin_addr.s_addr != sin.sin_addr.s_addr) || (rtp->rtcp->them.sin_port != sin.sin_port)) { - memcpy(&rtp->them, &sin, sizeof(rtp->them)); - rtp->rxseqno = 0; + memcpy(&rtp->rtcp->them, &sin, sizeof(rtp->rtcp->them)); if (option_debug) ast_log(LOG_DEBUG, "RTP NAT: Using address %s:%d\n", ast_inet_ntoa(iabuf, sizeof(iabuf), rtp->rtcp->them.sin_addr), ntohs(rtp->rtcp->them.sin_port)); }