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

Function x_pre_read_request

modules/examples/mod_example_hooks.c:1150–1157  ·  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 HOOK_VOID hook. */

Source from the content-addressed store, hash-verified

1148 * This is a HOOK_VOID hook.
1149 */
1150static void x_pre_read_request(request_rec *r, conn_rec *c)
1151{
1152 /*
1153 * We don't actually *do* anything here, except note the fact that we were
1154 * called.
1155 */
1156 trace_request(r, "x_pre_read_request()");
1157}
1158
1159/*
1160 * This routine is called after the request has been read but before any other

Callers

nothing calls this directly

Calls 1

trace_requestFunction · 0.85

Tested by

no test coverage detected