Overview
Comment: | Moved more file size variables to correct type and started reporting on completion of files |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
521131f3821259002d29afbb6bb56e99 |
User & Date: | rkeene on 2014-02-08 06:43:56 |
Other Links: | manifest | tags |
Context
2014-02-08
| ||
06:55 | Updated to correctly display IPv4 address if bound to IPv4 addresses check-in: 2a36924161 user: rkeene tags: trunk | |
06:43 | Moved more file size variables to correct type and started reporting on completion of files check-in: 521131f382 user: rkeene tags: trunk | |
06:39 | Added appropriate licensing information check-in: daddda9632 user: rkeene tags: trunk | |
Changes
Modified filed.c from [a6b140c86c] to [99eaeee2ab].
︙ | |||
578 579 580 581 582 583 584 | 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 | - - + + | ); } /* Handle a single request from a client */ static void filed_handle_client(int fd, struct filed_http_request *request) { struct filed_fileinfo *fileinfo; ssize_t sendfile_ret; |
︙ | |||
754 755 756 757 758 759 760 | 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 | - - + | sendfile_len -= sendfile_ret; sendfile_sent += sendfile_ret; if (sendfile_len == 0) { break; } } |
︙ |