I'm reading Apache httpd source code, I would like to know when a request come, which function get called first, followed by which function, and so on, is there some easy way to do so?
Something like
Waiting client connection... # a client send a HTTP request
client.c:accept_request() is called
client.c:handle_request() is called
asdf.c:func1() is called
fdsa.c:func2() is called
response.c:send_response() is called
Waiting client connection...