MCPcopy Create free account
hub / github.com/apache/httpd / x_post_read_request

Function x_post_read_request

modules/examples/mod_example_hooks.c:1166–1174  ·  view source on GitHub ↗

* This routine is called after the request has been read but before any other * phases have been processed. This allows us to make decisions based upon * the input header fields. * * This is a RUN_ALL hook. */

Source from the content-addressed store, hash-verified

1164 * This is a RUN_ALL hook.
1165 */
1166static int x_post_read_request(request_rec *r)
1167{
1168 /*
1169 * We don't actually *do* anything here, except note the fact that we were
1170 * called.
1171 */
1172 trace_request(r, "x_post_read_request()");
1173 return DECLINED;
1174}
1175
1176/*
1177 * This routine gives our module an opportunity to translate the URI into an

Callers

nothing calls this directly

Calls 1

trace_requestFunction · 0.85

Tested by

no test coverage detected