* 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
| 1095 | * processing the request. |
| 1096 | */ |
| 1097 | static 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, |
nothing calls this directly
no test coverage detected