I cannot find it in the request_rec* structure? Is there a way by which I can access it in the Apache Module?
Thanks!
|
I cannot find it in the request_rec* structure? Is there a way by which I can access it in the Apache Module? Thanks!
| |||
|
feedback
|
|
You should
then
mod_Somename.c is in your Somename directory. In this .c file contains request_rec* structure. if you want to try full reference of request_rec* is following link http://ci.apache.org/projects/httpd/trunk/doxygen/httpd_8h.html | |||
|
feedback
|
|
you can access request_rec* in input/output filter functions of an Apache 2.x Module: for input filters:
for output filters:
the structure is defined in httpd.h reference of Apache 2.x doxygen documentation | |||
|
feedback
|