* 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. */
| 1214 | * This is a RUN_FIRST hook. |
| 1215 | */ |
| 1216 | static 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 |
nothing calls this directly
no test coverage detected