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

Function x_quick_handler

modules/examples/mod_example_hooks.c:1097–1104  ·  view source on GitHub ↗

* The quick_handler hook presents modules with a very powerful opportunity to * serve their content in a very early request phase. Note that this handler * can not serve any requests from the file system because hooks like * map_to_storage have not run. The quick_handler hook also runs before any * authentication and access control. * * This hook is used by mod_cache to serve cached conten

Source from the content-addressed store, hash-verified

1095 * processing the request.
1096 */
1097static int x_quick_handler(request_rec *r, int lookup_uri)
1098{
1099 /*
1100 * Log the call and exit.
1101 */
1102 trace_request(r, "x_quick_handler()");
1103 return DECLINED;
1104}
1105
1106/*
1107 * This routine is called just after the server accepts the connection,

Callers

nothing calls this directly

Calls 1

trace_requestFunction · 0.85

Tested by

no test coverage detected