Hi I am creating an output filter that will alter the http response of an http requset. The output filter hook function's signature takes two parameters ap_filter* and apr_bucket_brigade*. How can I get a char* buffer of the context body of the http resonse from ap_filter* or apr_bucket_brigade*. Also how can I place the altered char* buffer in the response or can I alter the char* buffer with out making a copy of it.
- OutputFilter Altering Response Body William