* This routine gives our module an opportunity to translate the URI into an * actual filename, before URL decoding happens. * * This is a RUN_FIRST hook. */
| 1180 | * This is a RUN_FIRST hook. |
| 1181 | */ |
| 1182 | static int x_pre_translate_name(request_rec *r) |
| 1183 | { |
| 1184 | /* |
| 1185 | * We don't actually *do* anything here, except note the fact that we were |
| 1186 | * called. |
| 1187 | */ |
| 1188 | trace_request(r, "x_pre_translate_name()"); |
| 1189 | return DECLINED; |
| 1190 | } |
| 1191 | |
| 1192 | /* |
| 1193 | * This routine gives our module an opportunity to translate the URI into an |
nothing calls this directly
no test coverage detected