"Prajakt Deolasee" <[EMAIL PROTECTED]> writes:

> static void xyz_register_hook(apr_pool_t *p)
> {
>       xyz_hook_response_handler(ap_xyz_response_handler, NULL, NULL, 
>APR_HOOK_REALLY_LAST);
> }
...
> But this function is never called. Can somebody tell me whats wrong with this.

If you hook it really last then you've hooked it *after* whichever
hook is going to handle it, and subsequent hooks won't be called.

Hook it REALLY_FIRST.

-- 
Jeff Trawick | [EMAIL PROTECTED]
Born in Roswell... married an alien...

Reply via email to