aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 11:09:30 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 11:09:30 +0000
commit319f8ebef8a9e48cb74b220d4585552928549266 (patch)
treea6f292129a04b9eba6d2a2aef353e49e8b5a14e0 /networking
parentf5635f4d327c7f4ce34026c64548585dd7b59ffc (diff)
downloadbusybox-w32-319f8ebef8a9e48cb74b220d4585552928549266.tar.gz
busybox-w32-319f8ebef8a9e48cb74b220d4585552928549266.tar.bz2
busybox-w32-319f8ebef8a9e48cb74b220d4585552928549266.zip
httpd: round down sendfile byte count to 64k
*: style fixes
Diffstat (limited to 'networking')
-rw-r--r--networking/httpd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 3e3117a79..9c02ad679 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -1395,7 +1395,8 @@ static int sendFile(const char *url)
1395 fd++; /* write to fd #1 in inetd mode */ 1395 fd++; /* write to fd #1 in inetd mode */
1396#if ENABLE_FEATURE_HTTPD_USE_SENDFILE 1396#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
1397 do { 1397 do {
1398 count = sendfile(fd, f, &offset, MAXINT(ssize_t)); 1398 /* byte count is rounded down to 64k */
1399 count = sendfile(fd, f, &offset, MAXINT(ssize_t) - 0xffff);
1399 if (count < 0) { 1400 if (count < 0) {
1400 if (offset == 0) 1401 if (offset == 0)
1401 goto fallback; 1402 goto fallback;