aboutsummaryrefslogtreecommitdiffstats
path: root/rtp.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-06 17:44:47 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-06 17:44:47 +0000
commit7f3030b1cebf3afad38ff8b694f9fff8a28f66be (patch)
treeca699609075e827d91d520e1f5a65ed9abef688d /rtp.c
parentb6ac9c016c8cc5faa1b2846cb13149d24523322a (diff)
Clearly label EAGAIN as being the UDP checksum error that it is
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3157 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'rtp.c')
-rwxr-xr-xrtp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/rtp.c b/rtp.c
index c02780fab..5b2f1b5cc 100755
--- a/rtp.c
+++ b/rtp.c
@@ -411,7 +411,10 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
rtpheader = (unsigned int *)(rtp->rawdata + AST_FRIENDLY_OFFSET);
if (res < 0) {
- ast_log(LOG_WARNING, "RTP Read error: %s\n", strerror(errno));
+ if (errno == EAGAIN)
+ ast_log(LOG_NOTICE, "RTP: Received packet with bad UDP checksum\n");
+ else
+ ast_log(LOG_WARNING, "RTP Read error: %s\n", strerror(errno));
if (errno == EBADF)
CRASH;
return &null_frame;