projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e115566
)
Clearly label EAGAIN as being the UDP checksum error that it is
author
Mark Spencer
<markster@digium.com>
Sun, 6 Jun 2004 17:44:47 +0000
(17:44 +0000)
committer
Mark Spencer
<markster@digium.com>
Sun, 6 Jun 2004 17:44:47 +0000
(17:44 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3157
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
rtp.c
patch
|
blob
|
history
diff --git
a/rtp.c
b/rtp.c
index
c02780f
..
5b2f1b5
100755
(executable)
--- 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;