]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
don't print an error when you receive no data until normal circumstances with recvfro...
authorRussell Bryant <russell@russellbryant.com>
Tue, 31 May 2005 02:24:16 +0000 (02:24 +0000)
committerRussell Bryant <russell@russellbryant.com>
Tue, 31 May 2005 02:24:16 +0000 (02:24 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5791 65c4cc65-6c06-0410-ace0-fbb531ad65f3

rtp.c

diff --git a/rtp.c b/rtp.c
index 04bedfe754c95b8c5a5e13aff8edba0bf5fa0f11..acbbf29ca77686e08154e76aff4819a7408eee20 100755 (executable)
--- a/rtp.c
+++ b/rtp.c
@@ -351,9 +351,7 @@ struct ast_frame *ast_rtcp_read(struct ast_rtp *rtp)
                                        0, (struct sockaddr *)&sin, &len);
        
        if (res < 0) {
-               if (errno == EAGAIN)
-                       ast_log(LOG_NOTICE, "RTP: Received packet with bad UDP checksum\n");
-               else
+               if (errno != EAGAIN)
                        ast_log(LOG_WARNING, "RTP Read error: %s\n", strerror(errno));
                if (errno == EBADF)
                        CRASH;
@@ -426,9 +424,7 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
 
        rtpheader = (unsigned int *)(rtp->rawdata + AST_FRIENDLY_OFFSET);
        if (res < 0) {
-               if (errno == EAGAIN)
-                       ast_log(LOG_NOTICE, "RTP: Received packet with bad UDP checksum\n");
-               else
+               if (errno != EAGAIN)
                        ast_log(LOG_WARNING, "RTP Read error: %s\n", strerror(errno));
                if (errno == EBADF)
                        CRASH;