#include <apache_filters.h>
Inheritance diagram for ApacheInputFilter:
Public Member Functions | |
ApacheInputFilter () | |
Constructor for your input filter - called when the child thread/process is initiated. | |
virtual | ~ApacheInputFilter () |
Constructor for your input filter - called when the child thread/process is cleaned up. | |
virtual apr_status_t | connection_input_filter (ap_filter_t *f, apr_bucket_brigade *b, ap_input_mode_t eMode, apr_read_type_e eBlock, apr_off_t readbytes) |
connection_input_filter is called to process data. This is calleed once per brigade of data | |
virtual apr_status_t | request_input_filter (ap_filter_t *f, apr_bucket_brigade *b, ap_input_mode_t eMode, apr_read_type_e eBlock, apr_off_t readbytes) |
request_input_filter is called to process data. This is calleed once per brigade of data for a request |
|
Constructor for your input filter - called when the child thread/process is initiated.
|
|
Constructor for your input filter - called when the child thread/process is cleaned up.
|
|
connection_input_filter is called to process data. This is calleed once per brigade of data
Reimplemented in TestInputFilter. |
|
request_input_filter is called to process data. This is calleed once per brigade of data for a request
|