ap_requires — return the require array
const array_header *ap_requires (request_rec *r)
Returns the array of require_line
s that correspond
to the require
directive for the request
r
. require_line
is defined as
follows:
typedef struct { int method_mask; char *requirement; } require_line;
method_mask
is the bitwise OR
of:
1 << M_GET 1 << M_PUT 1 << M_POST 1 << M_DELETE 1 << M_CONNECT 1 << M_OPTIONS 1 << M_TRACE 1 << M_INVALID
as set by a Limit
directive.