1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

a couple of fixes for byte ranges:

. use %qx format instead of %llx for 64-bit integer (apr_time_t);
  %llx prints as "%llx"
. pass offset and length to ap_bucket_create_mmap() so that byte
  ranges work with mmaps (at least for a single range)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86777 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2000-10-31 19:59:09 +00:00
parent 6c14dd3c74
commit 7ccd0d2605

View File

@@ -311,7 +311,7 @@ AP_DECLARE(int) ap_set_byterange(request_rec *r)
long tlength = 0;
r->byterange = 2;
r->boundary = apr_psprintf(r->pool, "%llx%lx",
r->boundary = apr_psprintf(r->pool, "%qx%lx",
r->request_time, (long) getpid());
while (internal_byterange(0, &tlength, r, &r_range, NULL, NULL));
apr_table_setn(r->headers_out, "Content-Length",
@@ -2820,12 +2820,8 @@ AP_DECLARE(size_t) ap_send_mmap(apr_mmap_t *mm, request_rec *r, size_t offset,
ap_bucket_brigade *bb = NULL;
ap_bucket *b;
/* WE probably need to do something to make sure we are respecting the
* offset and length. I think I know how to do this, but I will wait
* until after the commit to actually write the code.
*/
bb = ap_brigade_create(r->pool);
b = ap_bucket_create_mmap(mm, 0, mm->size);
b = ap_bucket_create_mmap(mm, offset, length);
AP_BRIGADE_INSERT_TAIL(bb, b);
ap_pass_brigade(r->output_filters, bb);