in reply to non mod_perl Apache::File

Browsing through the source that looks to be a wrapper around the Apache C API ap_meets_conditions call, so it's not even perl code you could swipe. You might could see if you could wrap the apache code with Inline::C, but I'd bet it's too entangled with other parts of the Apache API to do so easily. Probably be easiest to see what the C's doing and use that to reimplement the functionality in perl.

Replies are listed 'Best First'.
Re^2: non mod_perl Apache::File
by dondelelcaro (Monk) on Dec 06, 2004 at 01:37 UTC
    Probably be easiest to see what the C's doing and use that to reimplement the functionality in perl.
    Yeah, that's pretty much what I had planned on doing from the beginning if I couldn't find someone else's implementation of the same. [I'd just rather avoid re-inventing the wheel if the wheel exists and is wheel-like enough for my purposes.]