If an RTP peer hasn't been set, ignore audio from it (Plexus workaround)
authorMark Spencer <markster@digium.com>
Sun, 14 Mar 2004 22:49:26 +0000 (22:49 +0000)
committerMark Spencer <markster@digium.com>
Sun, 14 Mar 2004 22:49:26 +0000 (22:49 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2425 65c4cc65-6c06-0410-ace0-fbb531ad65f3

rtp.c

diff --git a/rtp.c b/rtp.c
index 10178bb..a406177 100755 (executable)
--- a/rtp.c
+++ b/rtp.c
@@ -409,6 +409,11 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
                        ast_log(LOG_DEBUG, "RTP NAT: Using address %s:%d\n", inet_ntoa(rtp->them.sin_addr), ntohs(rtp->them.sin_port));
                }
        }
+       /* Ignore if the other side hasn't been given an address
+          yet.  */
+       if (!rtp->them.sin_addr.s_addr || !rtp->them.sin_port)
+               return &null_frame;
+
        /* Get fields */
        seqno = ntohl(rtpheader[0]);
        payloadtype = (seqno & 0x7f0000) >> 16;