Browse Source

don't close call on UDP send error

changes/24/1624/1
Richard Fuchs 11 years ago
parent
commit
fd99ecf98c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/call.c

+ 1
- 1
daemon/call.c View File

@ -885,7 +885,7 @@ forward:
ret = sendmsg(sink->sfd->fd.fd, &mh, 0);
if (ret == -1) {
ret = -errno;
ret = 0; /* temp for address family mismatches */
ilog(LOG_DEBUG,"Error when sending message. Error: %s",strerror(errno));
atomic64_inc(&stream->stats.errors);
atomic64_inc(&cm->statsps.errors);


Loading…
Cancel
Save