apreq_private_apache2.h revision 1e5905d1f04191cad9dae6117e1508c7f7d5587a
struct dir_config {
const char *temp_dir;
};
/* The "warehouse", stored in r->request_config */
struct apache2_handle {
request_rec *r;
ap_filter_t *f;
};
/* Tracks the apreq filter state */
struct filter_ctx {
const char *temp_dir;
};
void apreq_filter_make_context(ap_filter_t *f);
void apreq_filter_init_context(ap_filter_t *f);
static void apreq_filter_relocate(ap_filter_t *f)
{
request_rec *r = f->r;
if (f != r->input_filters) {
r->input_filters = f;
}
}