Differences From Artifact [1e9ce66531]:
- File filed.c — part of check-in [7a401fd8d2] at 2014-02-08 03:09:51 on branch trunk — Updated to do less work if logging is disabled (user: rkeene, size: 27924) [annotate] [blame] [check-ins using]
To Artifact [6f13628165]:
- File filed.c — part of check-in [1127550a5c] at 2014-02-08 03:10:23 on branch trunk — Noted that status should be reported (user: rkeene, size: 27958) [annotate] [blame] [check-ins using]
︙ | |||
725 726 727 728 729 730 731 732 733 734 735 736 737 738 | 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 | + | sendfile_len -= sendfile_ret; sendfile_sent += sendfile_ret; if (sendfile_len == 0) { break; } } /* XXX: TODO: Report status */ filed_log_msg("SEND_COMPLETE STATUS=%s FILE_FD=%i FD=%i BYTES=%llu BYTES_SENT=%llu", "<unknown>", fileinfo->fd, fd, (unsigned long long) request->headers.range.length, (unsigned long long) sendfile_sent ); |
︙ |