Archived
14
0
Fork 0

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
This commit is contained in:
markster 2004-06-06 17:44:47 +00:00
parent b6ac9c016c
commit 7f3030b1ce

5
rtp.c
View file

@ -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;