#include <apache_filters.h>
Inheritance diagram for ApacheOutputFilter:
Public Member Functions | |
ApacheOutputFilter () | |
Constructor for your output filter - called when the child thread/process is initiated. | |
virtual | ~ApacheOutputFilter () |
Destructor for your output filter - called when the child thread/process is cleaned up. | |
virtual int | connection_output_filter (ap_filter_t *f, apr_bucket_brigade *b) |
connection_output_filter is the method thats called for you to handle data | |
virtual int | request_output_filter (ap_filter_t *f, apr_bucket_brigade *b) |
request_output_filter is the method thats called for you to handle data |
|
Constructor for your output filter - called when the child thread/process is initiated.
|
|
Destructor for your output filter - called when the child thread/process is cleaned up.
|
|
connection_output_filter is the method thats called for you to handle data
Reimplemented in TestOutputFilter. |
|
request_output_filter is the method thats called for you to handle data
Reimplemented in TestOutputFilter. |