Doug MacEachern wrote:
> mod_perl doesn't set it's own alarm when $r->send_fd is called.  did you
> call $r->print or print before hand?

Hmm, no, I do something like this:

$r->content_type('application/octet-stream');
my($size) = -s $fh;
$r->header_out('Content-Length', $size);
$r->send_http_header;
$r->send_fd($fh, $size);
close($fh);

Reply via email to