Re: mod_perl 1.29: send_fh(): result status?

2005-08-24 Thread Brian Gorby
Brian Gorby wrote: Is this something that's possible in general? with mod_perl? Found it. Apache::Connection->aborted() is just what I needed. -Brian

mod_perl 1.29: send_fh(): result status?

2005-08-24 Thread Brian Gorby
I'm programming a web application that limits the number of downloads for clients on certain files: ... unless ( $r->header_only ) { $r->send_fd($fh); $self->record_download($user_id, $file_id); } close($fh); I'd like to be able to have some sort of confirmation that the file was sent / re