> Maybe I'm missing something, but it doesn't seem like such a problem.  If I
> make my own module DSO in C and  I add the hook when the module loads
> (LoadModule) for TransHandler, and I'm using compiled-in mod_proxy, I'll
> have the same issue.  Frankly, even if they're both compiled in, I
> potentially have the same issue...   And I'm sure that the httpd-dev people
> have thought of this.

yes, and their answer is to use APR_HOOK_REALLY_FIRST in your own module,
which would place it in front of mod_proxy - I suspect that none of the core
module use HOOK_REALLY_FIRST at request-time for just this reason.

so, with mod_perl we need to use APR_HOOK_REALLY_FIRST in order to give Perl
handlers first crack at important phases (translation and aaa in particular).

--Geoff


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to