Apache HTTPD
Public Attributes | List of all members
ap_filter_t Struct Reference

The representation of a filter chain. More...

#include <util_filter.h>

Public Attributes

ap_filter_rec_tfrec
 
void * ctx
 
ap_filter_tnext
 
request_recr
 
conn_recc
 

Detailed Description

The representation of a filter chain.

Each request has a list of these structures which are called in turn to filter the data. Sub requests get an exact copy of the main requests filter chain.

Definition at line 259 of file util_filter.h.

Member Data Documentation

◆ c

conn_rec* ap_filter_t::c

The conn_rec associated with the current filter. This is analogous to the request_rec, except that it is used for connection filters.

Definition at line 280 of file util_filter.h.

◆ ctx

void* ap_filter_t::ctx

A place to store any data associated with the current filter

Definition at line 266 of file util_filter.h.

◆ frec

ap_filter_rec_t* ap_filter_t::frec

The internal representation of this filter. This includes the filter's name, type, and the actual function pointer.

Definition at line 263 of file util_filter.h.

◆ next

ap_filter_t* ap_filter_t::next

The next filter in the chain

Definition at line 269 of file util_filter.h.

◆ r

request_rec* ap_filter_t::r

The request_rec associated with the current filter. If a sub-request adds filters, then the sub-request is the request associated with the filter.

Definition at line 275 of file util_filter.h.


The documentation for this struct was generated from the following file: