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

Function x_map_to_storage

modules/examples/mod_example_hooks.c:1216–1224  ·  view source on GitHub ↗

* This routine maps r->filename to a physical file on disk. Useful for * overriding default core behavior, including skipping mapping for * requests that are not file based. * * This is a RUN_FIRST hook. */

Source from the content-addressed store, hash-verified

1214 * This is a RUN_FIRST hook.
1215 */
1216static int x_map_to_storage(request_rec *r)
1217{
1218 /*
1219 * We don't actually *do* anything here, except note the fact that we were
1220 * called.
1221 */
1222 trace_request(r, "x_map_to_storage()");
1223 return DECLINED;
1224}
1225
1226/*
1227 * this routine gives our module another chance to examine the request

Callers

nothing calls this directly

Calls 1

trace_requestFunction · 0.85

Tested by

no test coverage detected