On Thu, 20 Jan 2000, Martin Lichtin wrote:

> 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);

you must be seeing logs from another process, none of those calls set an
'Apache->print' timeout.

Reply via email to