I'm tracking a bug in a closed source apache 2 mod. There are alot of functions in the shared library, and I'm not 100% positive which ones apache calls directly.
Googling apache mod entry hooks, finds alot of info. However I'm a little confused how to find:
"AP_DECLARE_HOOK(int,do_something,(request_rec *r,int n))" in the shared library.
http://213.11.80.10/manual/developer/hooks.html
Has the most relevant information.
I assume this creates a symbol in the shared library that apache reads to determine what functions to call. But what is the symbol name I should look for? This is on linux.







