From 61815da03c3e8c9126f55485909740f743bc57ea Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Wed, 25 Jul 2001 21:55:27 +0000 Subject: [PATCH] Same fix for largefile support as core.c git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89716 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_asis.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/modules/generators/mod_asis.c b/modules/generators/mod_asis.c index a7520495b4..36fd0a4d1e 100644 --- a/modules/generators/mod_asis.c +++ b/modules/generators/mod_asis.c @@ -118,10 +118,17 @@ static int asis_handler(request_rec *r) } if (!r->header_only) { - /* XXX: APR_HAS_LARGE_FILES issue; need to split into mutiple send_fd - * chunks, no greater than MAX(apr_size_t). - */ - ap_send_fd(f, r, 0, r->finfo.size, &nbytes); + apr_off_t start = 0; + apr_off_t fsize = r->finfo.size; +#ifdef APR_HAS_LARGE_FILES + /* must split into mutiple send_fd chunks */ + while (fsize > AP_MAX_SENDFILE) { + ap_send_fd(f, r, start, AP_MAX_SENDFILE, &nbytes); + start += AP_MAX_SENDFILE; + fsize -= AP_MAX_SENDFILE; + } +#endif + ap_send_fd(f, r, start, (apr_size_t)fsize, &nbytes); } apr_file_close(f); -- 2.50.1